New testcase for PR1662. GCC trees are horrible :(
authorChris Lattner <sabre@nondot.org>
Sat, 15 Sep 2007 05:46:41 +0000 (05:46 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 15 Sep 2007 05:46:41 +0000 (05:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41979 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2007-09-14-NegatePointer.c [new file with mode: 0644]

diff --git a/test/CFrontend/2007-09-14-NegatePointer.c b/test/CFrontend/2007-09-14-NegatePointer.c
new file mode 100644 (file)
index 0000000..cb49e46
--- /dev/null
@@ -0,0 +1,7 @@
+// RUN: %llvmgcc -S %s -o - 
+// PR1662
+
+int foo(unsigned char *test) {
+  return 0U - (unsigned int )test;
+}
+