blob: d11fa089dbab39d07d0101c0f13d463e7a976226 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// Test the -fwritable-strings option.
2
3// RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | \
4// RUN: grep {internal global}
5// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {internal constant}
6
7char *X = "foo";
8