| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |