blob: 811e3301f8d038ce8773e39656a967eb1c0d5cac (
plain)
| 1
2
3
4
5
6
7
 | // Test the -fwritable-strings option.
// RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | \
// RUN:    grep {private global}
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {private constant}
char *X = "foo";
 |