mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Attempt to fix nm-archive.test after r362798
llvm-lib now needs a `target triple` for bitcode, so add a new file that's like trivial.ll but has one, and use that in the test. (trivial.ll had a comment that looked like it wasn't supposed to be used in tests directly, so I don't want to change that file.) llvm-svn: 362809
This commit is contained in:
parent
d4999fa5bd
commit
7e1f295d71
18
test/Object/Inputs/small.ll
Normal file
18
test/Object/Inputs/small.ll
Normal file
@ -0,0 +1,18 @@
|
||||
target triple = "i386-pc-windows"
|
||||
|
||||
@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
|
||||
|
||||
define i32 @main() nounwind {
|
||||
entry:
|
||||
%call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i32 0, i32 0)) nounwind
|
||||
tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
declare i32 @puts(i8* nocapture) nounwind
|
||||
|
||||
declare void @SomeOtherFunction(...)
|
||||
|
||||
@var = global i32 0
|
||||
@llvm.used = appending global [1 x i8*] [i8* bitcast (i32* @var to i8*)], section "llvm.metadata"
|
||||
@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* null, i8* null }]
|
@ -19,7 +19,7 @@ COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386:
|
||||
COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: 00000000 T _main
|
||||
COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: U _puts
|
||||
|
||||
RUN: llvm-as %p/Inputs/trivial.ll -o=%t1
|
||||
RUN: llvm-as %p/Inputs/small.ll -o=%t1
|
||||
RUN: rm -f %t2
|
||||
RUN: llvm-ar rcs %t2 %t1
|
||||
RUN: llvm-nm %t2 | FileCheck %s -check-prefix BITCODE
|
||||
|
Loading…
Reference in New Issue
Block a user