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
92dd466a1a
llvm-project
/
llvm
/
test
/
FrontendC
/
2007-02-07-AddrLabel.c
11 lines
115 B
C
Raw
Normal View
History
Unescape
Escape
New testcase for PR947 llvm-svn: 34038
2007-02-08 12:34:03 +08:00
// PR947
Remove explicit uses of -emit-llvm, the test infrastructure adds it automatically. Use -S with llvm-gcc rather than -c, so tests can work when llvm-gcc is really dragonegg (which can output IR with -S but not -c). llvm-svn: 120158
2010-11-26 05:24:35 +08:00
// RUN: %llvmgcc %s -S -o -
New testcase for PR947 llvm-svn: 34038
2007-02-08 12:34:03 +08:00
void
foo
(
)
{
void
*
ptr
;
label
:
ptr
=
&
&
label
;
goto
*
ptr
;
}