mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
04b9a4331c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123447 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
231 B
C
8 lines
231 B
C
// Test the -fwritable-strings option.
|
|
|
|
// RUN: %llvmgcc -O3 -S -o - -fwritable-strings %s | \
|
|
// RUN: grep {internal unnamed_addr global}
|
|
// RUN: %llvmgcc -O3 -S -o - %s | grep {private unnamed_addr constant}
|
|
|
|
char *X = "foo";
|