mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 14:36:34 +00:00
721ea7ca10
would turn every getresult instruction into undef. This helps with rdar://5778210 llvm-svn: 50140
12 lines
246 B
LLVM
12 lines
246 B
LLVM
; RUN: llvm-as < %s | opt -sccp | llvm-dis | grep {ret i32 %Z}
|
|
; rdar://5778210
|
|
|
|
declare {i32, i32} @bar(i32 %A)
|
|
|
|
define i32 @foo() {
|
|
%X = call {i32, i32} @bar(i32 17)
|
|
%Y = getresult {i32, i32} %X, 0
|
|
%Z = add i32 %Y, %Y
|
|
ret i32 %Z
|
|
}
|