blob: 811e3301f8d038ce8773e39656a967eb1c0d5cac [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 | \
Duncan Sandsfb455972009-07-15 12:09:18 +00004// RUN: grep {private global}
5// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {private constant}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006
7char *X = "foo";