Chris Lattner | 4b0d93a | 2007-02-17 05:07:40 +0000 | [diff] [blame^] | 1 | // Test the -fwritable-strings option. |
2 | |||||
3 | // RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | grep 'internal global' && | ||||
4 | // RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep 'internal constant' | ||||
5 | |||||
6 | char *X = "foo"; | ||||
7 |