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
a2c3c8d71c
llvm-project
/
clang
/
test
/
CodeGen
/
trunc-array-initializer.c
4 lines
61 B
C
Raw
Normal View
History
Unescape
Escape
Update a number of CodeGen tests to not create .ll files in the test directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
2008-08-21 10:51:29 +08:00
// RUN: clang -emit-llvm %s -o %t
Treat discarding array initializer elements as an extwarn (so -pedantic-errors flags it). Allow CodeGen to truncate the initializer if needed. llvm-svn: 44518
2007-12-02 16:49:54 +08:00
int
ary
[
2
]
=
{
1
,
2
,
3
}
;