comparison gen/linkage.h @ 1064:f0b6549055ab

Make LDC work with LLVM trunk (s/LinkOnceLinkage/LinkOnceOdrLinkage/) Also moved the #defines for linkage types into a separate header instead of mars.h so we can #include revisions.h without having to rebuild the entire frontend every time we update. (I'm using revisions.h to get the LLVM revision for use in preprocessor conditionals. It should work with LLVM release 2.5, old trunk and new trunk)
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 08 Mar 2009 16:13:10 +0100
parents
children 123812e02bc8
comparison
equal deleted inserted replaced
1063:40d7f9b7357f 1064:f0b6549055ab
1 #ifndef LDC_GEN_LINKAGE_H
2 #define LDC_GEN_LINKAGE_H
3
4 #include "gen/revisions.h"
5
6 // Make it easier to test new linkage types
7 // Also used to adapt to some changes in LLVM between 2.5 and 2.6
8
9
10 // LLVM r66339 introduces LinkOnceODRLinkage, which is just what we want here.
11 // (It also renamed LinkOnceLinkage, so this #if is needed for LDC to compile
12 // with both 2.5 and trunk)
13 #if LLVM_REV >= 66339
14 # define TEMPLATE_LINKAGE_TYPE llvm::GlobalValue::LinkOnceODRLinkage
15 # define TYPEINFO_LINKAGE_TYPE llvm::GlobalValue::LinkOnceODRLinkage
16 // The One-Definition-Rule shouldn't matter for debug info, right?
17 # define DEBUGINFO_LINKONCE_LINKAGE_TYPE \
18 llvm::GlobalValue::LinkOnceAnyLinkage
19
20 // For 2.5 and any LLVM revision before 66339 we want to use LinkOnceLinkage
21 // It's equivalent to LinkOnceAnyLinkage in trunk except that the inliner had a
22 // hack (removed in r66339) to allow inlining of templated functions even though
23 // LinkOnce doesn't technically allow that.
24 #else
25 # define TEMPLATE_LINKAGE_TYPE llvm::GlobalValue::LinkOnceLinkage
26 # define TYPEINFO_LINKAGE_TYPE llvm::GlobalValue::LinkOnceLinkage
27 # define DEBUGINFO_LINKONCE_LINKAGE_TYPE \
28 llvm::GlobalValue::LinkOnceLinkage
29 #endif
30
31 #endif