mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
dc2bb77b1b
llvm-svn: 95971
8 lines
227 B
C
8 lines
227 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 {private constant}
|
|
|
|
char *X = "foo";
|