diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-01-01 22:14:31 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-01-01 22:14:31 +0000 |
commit | fe67ca209fc08664db20525caec21bf07058c67e (patch) | |
tree | bc6382f1f4f70a0ccd48fe73e010446f274281b0 | |
parent | 7a832da304abc3fcb05026fb1ca32c6ee7b486c9 (diff) |
Change this regression so andi is not a valid codegen of it
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25056 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/Alpha/zapnot2.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Alpha/zapnot2.ll b/test/CodeGen/Alpha/zapnot2.ll index d04edd6bad..50ab112b3e 100644 --- a/test/CodeGen/Alpha/zapnot2.ll +++ b/test/CodeGen/Alpha/zapnot2.ll @@ -5,6 +5,6 @@ implementation ; Functions: long %bar(long %x) { entry: - %tmp.1 = and long %x, 255 ; <long> [#uses=1] + %tmp.1 = and long %x, 16711935 ; <long> [#uses=1] ret long %tmp.1 } |