llvm-mc: Tweak undefined symbol handling.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 24 Aug 2009 08:39:57 +0000 (08:39 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 24 Aug 2009 08:39:57 +0000 (08:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79898 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCAssembler.cpp

index 7a67fac7efd9f4a96c9d1110a7949142d7b9ec4f..80e1b9e43cbd82500aea92d453c522cd32a8dcbb 100644 (file)
@@ -294,7 +294,7 @@ public:
     // FIXME: Set private external bit.
 
     // Set external bit.
-    if (MSD.SymbolData->isExternal())
+    if (MSD.SymbolData->isExternal() || Symbol.isUndefined())
       Type |= STF_External;
 
     // struct nlist (12 bytes)
@@ -339,7 +339,7 @@ public:
            ie = Asm.symbol_end(); it != ie; ++it) {
       MCSymbol &Symbol = it->getSymbol();
 
-      if (!it->isExternal())
+      if (!it->isExternal() && !Symbol.isUndefined())
         continue;
 
       uint64_t &Entry = StringIndexMap[Symbol.getName()];
@@ -371,7 +371,7 @@ public:
            ie = Asm.symbol_end(); it != ie; ++it) {
       MCSymbol &Symbol = it->getSymbol();
 
-      if (it->isExternal())
+      if (it->isExternal() || Symbol.isUndefined())
         continue;
 
       uint64_t &Entry = StringIndexMap[Symbol.getName()];
@@ -385,7 +385,6 @@ public:
       MSD.SymbolData = it;
       MSD.StringIndex = Entry;
 
-      assert(!Symbol.isUndefined() && "Local symbol can not be undefined!");
       if (Symbol.isAbsolute()) {
         MSD.SectionIndex = 0;
         LocalSymbolData.push_back(MSD);