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