From: Chris Lattner Date: Tue, 7 Oct 2003 02:57:51 +0000 (+0000) Subject: new testcase, distilled by Brian X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=85c5a3f31ceb38d0a16075ef9520d85f40f84e9a;p=oota-llvm.git new testcase, distilled by Brian git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8914 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2003-10-06-NegateExprType.c b/test/CFrontend/2003-10-06-NegateExprType.c new file mode 100644 index 00000000000..56c5e30f4ae --- /dev/null +++ b/test/CFrontend/2003-10-06-NegateExprType.c @@ -0,0 +1,6 @@ + +extern int A[10]; +void Func(int *B) { + B - &A[5]; +} +