aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-09-15 05:46:41 +0000
committerChris Lattner <sabre@nondot.org>2007-09-15 05:46:41 +0000
commitb90795fd79798a727fc4c7578184842ea1f2d0f5 (patch)
tree3f00bd3bbc7831a6034e55d919cd17dd81604604 /test
parente47f1f9633064749ecb915254b1c31697e27aab1 (diff)
downloadexternal_llvm-b90795fd79798a727fc4c7578184842ea1f2d0f5.zip
external_llvm-b90795fd79798a727fc4c7578184842ea1f2d0f5.tar.gz
external_llvm-b90795fd79798a727fc4c7578184842ea1f2d0f5.tar.bz2
New testcase for PR1662. GCC trees are horrible :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41979 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2007-09-14-NegatePointer.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CFrontend/2007-09-14-NegatePointer.c b/test/CFrontend/2007-09-14-NegatePointer.c
new file mode 100644
index 0000000..cb49e46
--- /dev/null
+++ b/test/CFrontend/2007-09-14-NegatePointer.c
@@ -0,0 +1,7 @@
+// RUN: %llvmgcc -S %s -o -
+// PR1662
+
+int foo(unsigned char *test) {
+ return 0U - (unsigned int )test;
+}
+