mirror of
https://github.com/intel/llvm.git
synced 2026-02-02 18:18:09 +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
9 lines
134 B
C
9 lines
134 B
C
// RUN: clang -emit-llvm -o %t -fwritable-strings %s
|
|
|
|
int main() {
|
|
char *str = "abc";
|
|
str[0] = '1';
|
|
printf("%s", str);
|
|
}
|
|
|