Fix PR1607

llvm-svn: 41048
This commit is contained in:
Chris Lattner 2007-08-13 18:42:37 +00:00
parent 3251377104
commit 4e7f673f65
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)
}