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
72c33f5657
llvm-project
/
clang
/
test
/
CodeGen
/
extern-block-var.c
7 lines
75 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 %s -emit-llvm -o %t
Implement extern block var. llvm-svn: 47223
2008-02-17 06:30:38 +08:00
int
f
(
)
{
extern
int
a
;
return
a
;
}