llvm-mirror/test/Transforms/SCCP/ipsccp-basic.ll
Dan Gohman 8d84372836 Change these tests to feed the assembly files to opt directly, instead
of using llvm-as, now that opt supports this.

llvm-svn: 81226
2009-09-08 16:50:01 +00:00

14 lines
281 B
LLVM

; RUN: opt %s -ipsccp | llvm-dis | \
; RUN: grep -v {ret i32 17} | grep -v {ret i32 undef} | not grep ret
define internal i32 @bar(i32 %A) {
%X = add i32 1, 2 ; <i32> [#uses=0]
ret i32 %A
}
define i32 @foo() {
%X = call i32 @bar( i32 17 ) ; <i32> [#uses=1]
ret i32 %X
}