From: Chris Lattner Date: Wed, 14 May 2003 14:38:10 +0000 (+0000) Subject: new testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c5c5063a0723fb08c21ad5d822d0503ab7ef18d9;p=oota-llvm.git new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6195 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/C++Frontend/global_type.cpp b/test/C++Frontend/global_type.cpp new file mode 100644 index 00000000000..a11ea644129 --- /dev/null +++ b/test/C++Frontend/global_type.cpp @@ -0,0 +1,6 @@ +// This testcase was causing an incorrect type emission for data. +double data[100]; + +double *dpa = data; +double *dpb = data+100; +