Geeze, what is with Brian and these ifdef's?

llvm-svn: 9169
This commit is contained in:
Chris Lattner 2003-10-16 18:27:24 +00:00
parent 3c38eac99b
commit 06bd29b53b
1 changed files with 0 additions and 2 deletions

View File

@ -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';