| commit | 825a00195d3f88f77db40d49925e637084950f20 | [log] [tgz] |
|---|---|---|
| author | Chris Lattner <sabre@nondot.org> | Sat Apr 10 22:01:27 2004 +0000 |
| committer | Chris Lattner <sabre@nondot.org> | Sat Apr 10 22:01:27 2004 +0000 |
| tree | 1d9ad3ff9e202d720cb0acc97bd06ef9e362076a | |
| parent | 69c4900512411e3efb1e54fb3d3d51dedfdbcce1 [diff] |
New testcase llvm-svn: 12818
diff --git a/llvm/test/Regression/Transforms/InstCombine/add.ll b/llvm/test/Regression/Transforms/InstCombine/add.ll index e7548fb..8c99eac 100644 --- a/llvm/test/Regression/Transforms/InstCombine/add.ll +++ b/llvm/test/Regression/Transforms/InstCombine/add.ll
@@ -123,4 +123,10 @@ ret int %V } +int %test20(int %x) { + %tmp.2 = xor int %x, -2147483648 + ;; Add of sign bit -> xor of sign bit. + %tmp.4 = add int %tmp.2, -2147483648 + ret int %tmp.4 +}