repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2007-02-16-WritableStrings.c
blob
811e3301f8d038ce8773e39656a967eb1c0d5cac
1
// Test the -fwritable-strings option.
2
3
// RUN: %llvmgcc -O3 -S -o - -emit-llvm -fwritable-strings %s | \
4
// RUN: grep {private global}
5
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep {private constant}
6
7
char
*
X
=
"foo"
;