Correct an accidental duplication of the test (patch doesn't handle

creating new files very well).

llvm-svn: 73599
This commit is contained in:
Eli Friedman 2009-06-17 03:05:00 +00:00
parent a0fba5319d
commit 28891b661d
1 changed files with 0 additions and 9 deletions

View File

@ -7,12 +7,3 @@ entry:
%and = and i32 %rem, 2
ret i32 %and
}
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep srem
; PR3439
define i32 @a(i32 %x) nounwind {
entry:
%rem = srem i32 %x, 2
%and = and i32 %rem, 2
ret i32 %and
}