blob: f26d50b3524034a63b6a9c5d8d967a823c05fcb3 [file] [log] [blame]
Chris Lattner4b0d93a2007-02-17 05:07:40 +00001// Test the -fwritable-strings option.
2
3// RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | grep 'internal global' &&
4// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep 'internal constant'
5
6char *X = "foo";
7