mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
16a95f81df
llvm-svn: 34365
8 lines
219 B
C
8 lines
219 B
C
// 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";
|
|
|