blob: 6d692c1323de842be00d3f4d66ada5a3f0e5ab56 [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4extern int A[10];
5void Func(int *B) {
6 B - &A[5];
7}
8