This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
6a42ec3e70
llvm-project
/
clang
/
test
/
CodeGen
/
string-literal.c
8 lines
96 B
C
Raw
Normal View
History
Unescape
Escape
Rename clang to clang-cc. Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
2009-03-24 10:24:46 +08:00
// RUN: clang-cc -emit-llvm %s -o -
String literal in aggregate expression llvm-svn: 45330
2007-12-23 11:11:58 +08:00
int
main
(
)
{
char
a
[
10
]
=
"
abc
"
;
fix some sema problems with wide strings and hook up basic codegen for them. llvm-svn: 65582
2009-02-27 07:01:51 +08:00
void
*
foo
=
L
"
AB
"
;
String literal in aggregate expression llvm-svn: 45330
2007-12-23 11:11:58 +08:00
}