bolt/deps/llvm-18.1.8/llvm/test/Assembler/2003-05-15-AssemblerProblem.ll
2025-02-14 19:21:04 +01:00

15 lines
412 B
LLVM

; 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
}