brintos

brintos / llvm-project-archived public Read only

0
0
Text · 148 B · bfe0f35 Raw
9 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o -2// Test case by Eric Postpischil!3void foo(void)4{5  char a[1];6  int t = 1;7  ((char (*)[t]) a)[0][0] = 0;8}9