blob: d0703ef5e914e33528db5061e84754747445edcd [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001/* RUN: %clang_cc1 %s -emit-llvm -o - | grep -v alloca | not grep bitcast
2 */
3
4void test(int* array, long long N) {
5 array[N] = N[array] = 33;
6}
7