directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
10 lines
180 B
C
10 lines
180 B
C
// RUN: clang -emit-llvm %s -o %t
|
|
|
|
char *globalString = "abc";
|
|
char *globalStringArray[5] = { "123", "abc" };
|
|
char *anotherGlobalString = "123";
|
|
|
|
int main() {
|
|
printf("123");
|
|
}
|