mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
7dfdc32405
llvm-svn: 75777
8 lines
226 B
C
8 lines
226 B
C
// 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";
|