Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
8ac2c66a1442985091c5ec2b33ce6d3df3bcb529
/
.
/
test
/
CodeGenCXX
/
new-operator-phi.cpp
blob: 49859acf4fa60a999eadcdedfb68191bb5a45a24 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only -verify %s
// 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
());
}