1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/Assembler/2003-05-15-AssemblerProblem.ll

16 lines
531 B
LLVM
Raw Normal View History

2003-05-15 21:38:39 +02:00
; This bug was caused by two CPR's existing for the same global variable,
; colliding in the Module level CPR map.
; RUN: llvm-as %s -o /dev/null
; RUN: verify-uselistorder %s -preserve-bc-use-list-order
2003-05-15 21:38:39 +02:00
2008-02-14 08:57:12 +01:00
define void @test() {
call void (...)* bitcast (void (i16*, i32)* @AddString to void (...)*)( i16* null, i32 0 )
ret void
}
2008-02-14 08:57:12 +01:00
define void @AddString(i16* %tmp.124, i32 %tmp.127) {
call void (...)* bitcast (void (i16*, i32)* @AddString to void (...)*)( i16* %tmp.124, i32 %tmp.127 )
ret void
}