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