summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/new-operator-phi.cpp
blob: 641734d223ad718955f83956d87240d625566df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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());
}