1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 
4 extern int A[10];
Func(int * B)5 void Func(int *B) {
6   B - &A[5];
7 }
8 
9