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