Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
ce275675d33142c235d7027db16abe43da616ee4
/
.
/
test
/
CodeGenCXX
/
eval-recursive-constant.cpp
blob: 608c95d828ed78bae64f937c5285f9625639381e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm-only
extern
const
int
a
,
b
;
const
int
a
=
b
,
b
=
a
;
int
c
()
{
if
(
a
)
return
1
;
return
0
;
}