Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: src/IceTypes.cpp

Issue 1202253002: Includes module header first. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes All Subzero includes to match LLVM style guide. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceTypes.cpp - Primitive type properties ---------------===// 1 //===- subzero/src/IceTypes.cpp - Primitive type properties ---------------===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file defines a few attributes of Subzero primitive types. 10 // This file defines a few attributes of Subzero primitive types.
11 // 11 //
12 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===//
13 13
14 #include "IceTypes.h"
15
14 #include "IceDefs.h" 16 #include "IceDefs.h"
15 #include "IceTypes.h"
16 17
17 namespace Ice { 18 namespace Ice {
18 19
19 namespace { 20 namespace {
20 21
21 const char *TargetArchName[] = { 22 const char *TargetArchName[] = {
22 #define X(tag, str, is_elf64, e_machine, e_flags) str, 23 #define X(tag, str, is_elf64, e_machine, e_flags) str,
23 TARGETARCH_TABLE 24 TARGETARCH_TABLE
24 #undef X 25 #undef X
25 }; 26 };
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 IsFirst = false; 270 IsFirst = false;
270 } else { 271 } else {
271 Stream << ", "; 272 Stream << ", ";
272 } 273 }
273 Stream << ArgTy; 274 Stream << ArgTy;
274 } 275 }
275 Stream << ")"; 276 Stream << ")";
276 } 277 }
277 278
278 } // end of namespace Ice 279 } // end of namespace Ice
OLDNEW
« src/IceTargetLoweringARM32.cpp ('K') | « src/IceTypes.h ('k') | src/IceUtils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698