blob: aa69a31a48fc27f95f811204dd0a8365675b96ff [file] [log] [blame]
Tanya Lattner33eefff2008-02-21 07:42:26 +00001; RUN: llvm-as < %s | llc -march=x86 | not grep add
2
3define i1 @X(i32 %X) {
4 %Y = add i32 %X, 14 ; <i32> [#uses=1]
5 %Z = icmp ne i32 %Y, 12345 ; <i1> [#uses=1]
6 ret i1 %Z
Chris Lattner29dd2d72006-02-02 06:35:38 +00007}
8