brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · 76bb415 Raw
13 lines · c
1// RUN: %clang_cc1 -emit-llvm -Wno-int-conversion %s -o -2 3int test(void* i)4{5  return (int)i;6}7 8int test2(void) {9  float x[2];10  return x;11}12 13