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

Side by Side Diff: src/IceDefs.h

Issue 2306273002: Subzero: Fix target attribute when SZTARGET is defined. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Use string concatenation. Created 4 years, 3 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/IceCompileServer.cpp ('k') | src/IceRevision.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/IceDefs.h - Common Subzero declarations ------*- C++ -*-===// 1 //===- subzero/src/IceDefs.h - Common Subzero 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 29 matching lines...) Expand all
40 #include <memory> 40 #include <memory>
41 #include <mutex> 41 #include <mutex>
42 #include <set> 42 #include <set>
43 #include <string> 43 #include <string>
44 #include <system_error> 44 #include <system_error>
45 #include <unordered_map> 45 #include <unordered_map>
46 #include <unordered_set> 46 #include <unordered_set>
47 #include <utility> 47 #include <utility>
48 #include <vector> 48 #include <vector>
49 49
50 #define XSTRINGIFY(x) STRINGIFY(x)
51 #define STRINGIFY(x) #x
52
50 namespace Ice { 53 namespace Ice {
51 54
52 class Assembler; 55 class Assembler;
53 template <template <typename> class> class BitVectorTmpl; 56 template <template <typename> class> class BitVectorTmpl;
54 class Cfg; 57 class Cfg;
55 class CfgNode; 58 class CfgNode;
56 class Constant; 59 class Constant;
57 class ELFObjectWriter; 60 class ELFObjectWriter;
58 class ELFStreamer; 61 class ELFStreamer;
59 class FunctionDeclaration; 62 class FunctionDeclaration;
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 RPE_PooledConstantReordering, 450 RPE_PooledConstantReordering,
448 RPE_RegAllocRandomization, 451 RPE_RegAllocRandomization,
449 RPE_num 452 RPE_num
450 }; 453 };
451 454
452 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; 455 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>;
453 456
454 } // end of namespace Ice 457 } // end of namespace Ice
455 458
456 #endif // SUBZERO_SRC_ICEDEFS_H 459 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceCompileServer.cpp ('k') | src/IceRevision.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698