Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
1f35ec3c2c5662644c07969a1b5c5ad748764285
/
.
/
test
/
CodeGenCXX
/
new-operator-phi.cpp
blob: 641734d223ad718955f83956d87240d625566df6 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only -verify %s
// expected-no-diagnostics
// PR5454
#include
<stddef.h>
struct
X
{
static
void
*
operator
new
(
size_t
size
)
throw
();
X
(
int
);
};
int
a
(),
b
();
void
b
(
int
x
)
{
new
X
(
x
?
a
()
:
b
());
}