llvm-6502/test/C++Frontend/global_type.cpp
Chris Lattner 939f474832 Forgot to make test executable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6196 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-14 14:47:38 +00:00

8 lines
155 B
C++

// This testcase was causing an incorrect type emission for data.
double data[100];
double *dpa = data;
double *dpb = data+100;
int main() { return 0; }