Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f1ce4be48c0b204424d87613c56d52eb2225ae40
/
.
/
test
/
CodeGen
/
2004-11-27-InvalidConstantExpr.c
blob: 431dccffc1a13d1af7d8353833fc199d0442ddae [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o - | not grep {foo\\* sub}
// This should not produce a subtrace constantexpr of a pointer
struct
foo
{
int
Y
;
char
X
[
100
];
}
F
;
int
test
(
char
*
Y
)
{
return
Y
-
F
.
X
;
}