blob: 0f281ce7c5e36b325d42f98dadebfca1e6478afc [file] [log] [blame]
Chris Lattner4b0d93a2007-02-17 05:07:40 +00001// Test the -fwritable-strings option.
2
Reid Spencerdcb925e2007-04-15 20:08:37 +00003// RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | \
Evan Chengd19925f2010-02-12 07:48:46 +00004// RUN: grep {internal global}
Duncan Sandsc3493cc2009-07-15 12:09:18 +00005// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {private constant}
Chris Lattner4b0d93a2007-02-17 05:07:40 +00006
7char *X = "foo";