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

Side by Side Diff: src/IceGlobalInits.h

Issue 1803403002: Subzero. Flags refactoring. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 9 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
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceTargetLowering.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceGlobalInits.h - Global declarations -------*- C++ -*-===// 1 //===- subzero/src/IceGlobalInits.h - Global declarations -------*- C++ -*-===//
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 /// \file 10 /// \file
(...skipping 12 matching lines...) Expand all
23 #include "IceFixups.h" 23 #include "IceFixups.h"
24 #include "IceGlobalContext.h" 24 #include "IceGlobalContext.h"
25 #include "IceIntrinsics.h" 25 #include "IceIntrinsics.h"
26 #include "IceMangling.h" 26 #include "IceMangling.h"
27 #include "IceOperand.h" 27 #include "IceOperand.h"
28 #include "IceTypes.h" 28 #include "IceTypes.h"
29 29
30 #ifdef __clang__ 30 #ifdef __clang__
31 #pragma clang diagnostic push 31 #pragma clang diagnostic push
32 #pragma clang diagnostic ignored "-Wunused-parameter" 32 #pragma clang diagnostic ignored "-Wunused-parameter"
33 #pragma clang diagnostic ignored "-Wredundant-move"
34 #endif // __clang__ 33 #endif // __clang__
35 34
36 #include "llvm/Bitcode/NaCl/NaClBitcodeParser.h" // for NaClBitcodeRecord. 35 #include "llvm/Bitcode/NaCl/NaClBitcodeParser.h" // for NaClBitcodeRecord.
37 #include "llvm/IR/CallingConv.h" 36 #include "llvm/IR/CallingConv.h"
38 #include "llvm/IR/GlobalValue.h" // for GlobalValue::LinkageTypes. 37 #include "llvm/IR/GlobalValue.h" // for GlobalValue::LinkageTypes.
39 38
40 #ifdef __clang__ 39 #ifdef __clang__
41 #pragma clang diagnostic pop 40 #pragma clang diagnostic pop
42 #endif // __clang__ 41 #endif // __clang__
43 42
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 template <class StreamType> 504 template <class StreamType>
506 inline StreamType &operator<<(StreamType &Stream, 505 inline StreamType &operator<<(StreamType &Stream,
507 const GlobalDeclaration &Addr) { 506 const GlobalDeclaration &Addr) {
508 Addr.dump(Stream); 507 Addr.dump(Stream);
509 return Stream; 508 return Stream;
510 } 509 }
511 510
512 } // end of namespace Ice 511 } // end of namespace Ice
513 512
514 #endif // SUBZERO_SRC_ICEGLOBALINITS_H 513 #endif // SUBZERO_SRC_ICEGLOBALINITS_H
OLDNEW
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceTargetLowering.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698