2003-05-16 03:38:39 +08:00
|
|
|
; This bug was caused by two CPR's existing for the same global variable,
|
|
|
|
; colliding in the Module level CPR map.
|
2009-08-25 23:38:29 +08:00
|
|
|
; RUN: llvm-as %s -o /dev/null
|
2014-08-20 05:08:27 +08:00
|
|
|
; RUN: verify-uselistorder %s
|
2003-05-16 03:38:39 +08:00
|
|
|
|
2008-02-14 15:57:12 +08:00
|
|
|
define void @test() {
|
|
|
|
call void (...)* bitcast (void (i16*, i32)* @AddString to void (...)*)( i16* null, i32 0 )
|
2003-05-16 02:52:08 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2008-02-14 15:57:12 +08: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
|
2003-05-16 02:52:08 +08:00
|
|
|
}
|
|
|
|
|