repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rename llvm-gcc4 to llvm-gcc.
[llvm-complete.git]
/
test
/
CFrontend
/
2002-03-11-LargeCharInString.c
blob
d8a1671fc773f46367e84d226bba182e69b9dc11
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
#include <string.h>
4
5
int
test
(
char
*
X
) {
6
/* LLVM-GCC used to emit:
7
%.LC0 = internal global [3 x sbyte] c"\1F\FFFFFF8B\00"
8
*/
9
return
strcmp
(
X
,
"
\037\213
"
);
10
}