Fix PR1607

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-08-13 18:42:37 +00:00
parent d2953866d6
commit a45d9a15ba
2 changed files with 15 additions and 3 deletions

View File

@ -231,12 +231,12 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
O << "\t.weak\t" << name << "\n";
}
break;
case GlobalValue::AppendingLinkage:
// FIXME: appending linkage variables should go into a section of
// their name or something. For now, just emit them as external.
case GlobalValue::DLLExportLinkage:
DLLExportedGVs.insert(Mang->makeNameProper(I->getName(),""));
// FALL THROUGH
case GlobalValue::AppendingLinkage:
// FIXME: appending linkage variables should go into a section of
// their name or something. For now, just emit them as external.
case GlobalValue::ExternalLinkage:
// If external or appending, declare as a global symbol
O << "\t.globl " << name << "\n";

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | llc -march=x86 | not grep drectve
; PR1607
%hlvm_programs_element = type { i8*, i32 (i32, i8**)* }
@hlvm_programs = appending constant [1 x %hlvm_programs_element]
zeroinitializer
define %hlvm_programs_element* @hlvm_get_programs() {
entry:
ret %hlvm_programs_element* getelementptr([1 x %hlvm_programs_element]*
@hlvm_programs, i32 0, i32 0)
}