Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
CodeGenCXX
/
new-operator-phi.cpp
blob: a5eed28ccf951e6c952fbda17d8dd939a4e96463 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm-only -verify %s
// PR5454
#include
<stddef.h>
class
X
{
static
void
*
operator
new
(
size_t
size
)
throw
();
X
(
int
);
};
int
a
(),
b
();
void
b
(
int
x
)
{
new
X
(
x
?
a
()
:
b
());
}