blob: 3ac580b6ab20908738dd34d504b510ad04efe790 [file] [log] [blame]
; 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
define void @test() {
call void (...) @AddString( ptr null, i32 0 )
ret void
}
define void @AddString(ptr %tmp.124, i32 %tmp.127) {
call void (...) @AddString( ptr %tmp.124, i32 %tmp.127 )
ret void
}