mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
eb3cd5e822
llvm-svn: 51695
9 lines
229 B
C
9 lines
229 B
C
// Test the -fwritable-strings option.
|
|
|
|
// RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | \
|
|
// RUN: grep {internal global}
|
|
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {internal constant}
|
|
|
|
char *X = "foo";
|
|
|