mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Geeze, what is with Brian and these ifdef's?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e63540307d
commit
9eb52a5c29
@ -54,9 +54,7 @@ namespace {
|
||||
char TypeCharForSymbol (GlobalValue &GV) {
|
||||
if (GV.isExternal ()) return 'U';
|
||||
if (GV.hasLinkOnceLinkage ()) return 'C';
|
||||
#ifdef WEAK_LINKAGE_EVENTUALLY_IMPLEMENTED
|
||||
if (GV.hasWeakLinkage ()) return 'W';
|
||||
#endif
|
||||
if (isa<Function> (GV) && GV.hasInternalLinkage ()) return 't';
|
||||
if (isa<Function> (GV)) return 'T';
|
||||
if (isa<GlobalVariable> (GV) && GV.hasInternalLinkage ()) return 'd';
|
||||
|
Loading…
x
Reference in New Issue
Block a user