From: Chris Lattner Date: Tue, 7 May 2002 20:22:12 +0000 (+0000) Subject: Add testcase for not expressions X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e473a34caf58da20a97982ee6f9ea41b89c949ad;p=oota-llvm.git Add testcase for not expressions git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2539 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/ConstProp/nottest.ll b/test/Transforms/ConstProp/nottest.ll new file mode 100644 index 00000000000..d5df709a731 --- /dev/null +++ b/test/Transforms/ConstProp/nottest.ll @@ -0,0 +1,22 @@ +; Ensure constant propogation of 'not' instructions is working correctly. + +; RUN: if as < %s | opt -constprop | dis | grep not +; RUN: then exit 1 +; RUN: else exit 0 +; RUN: fi + +int "test1"() { + %R = not int 4 + ret int %R +} + +int "test2"() { + %R = not int -23 + ret int %R +} + +bool "test3"() { + %R = not bool true + ret bool %R +} +