mirror of
https://github.com/intel/llvm.git
synced 2026-01-27 14:50:42 +08:00
directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
15 lines
193 B
C
15 lines
193 B
C
// RUN: clang -emit-llvm %s -o %t
|
|
|
|
int f() {
|
|
int a[2];
|
|
a[0] = 0;
|
|
}
|
|
|
|
int f2() {
|
|
int x = 0;
|
|
int y = 1;
|
|
int a[10] = { y, x, 2, 3};
|
|
int b[10] = { 2,4,x,6,y,8};
|
|
int c[5] = { 0,1,2,3};
|
|
}
|