diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-14 19:26:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-14 19:26:34 +0000 |
commit | d0cad7a5f5c802b1307c846517cdb0249e870f2a (patch) | |
tree | c75b0ede5fd9d040ebfba652c248e8a6f44569a4 | |
parent | ad333484ea5ae976b83e35ccd3f6cfa6e71290e2 (diff) |
Change not's to xors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3329 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/ConstProp/nottest.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/ConstProp/nottest.ll b/test/Transforms/ConstProp/nottest.ll index cfff9aebab..a74d514899 100644 --- a/test/Transforms/ConstProp/nottest.ll +++ b/test/Transforms/ConstProp/nottest.ll @@ -1,22 +1,22 @@ ; Ensure constant propogation of 'not' instructions is working correctly. -; RUN: if as < %s | opt -constprop -die | dis | grep not +; RUN: if as < %s | opt -constprop -die | dis | grep xor ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi int "test1"() { - %R = not int 4 + %R = xor int 4, -1 ret int %R } int "test2"() { - %R = not int -23 + %R = xor int -23, -1 ret int %R } bool "test3"() { - %R = not bool true + %R = xor bool true, true ret bool %R } |