commit | b82f5e7c0045176161a0389f10e6af533860f18a | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Oct 29 13:56:42 2001 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Oct 29 13:56:42 2001 +0000 |
tree | 3f37455d101ba269ce6e0fd7cd4cb2d0ddc1a6d8 | |
parent | 24d3a8b58df2063e3b4bdaafc1bf8170be7fd7a4 [diff] [blame] |
Test bitwise operations git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1025 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Feature/testlogical.ll b/test/Feature/testlogical.ll new file mode 100644 index 0000000..d1f8c25 --- /dev/null +++ b/test/Feature/testlogical.ll
@@ -0,0 +1,10 @@ +implementation + +int "simpleAdd"(int %i0, int %j0) +begin + %t1 = xor int %i0, %j0 + %t2 = or int %i0, %j0 + %t3 = and int %t1, %t2 + ret int %t3 +end +