Chris pointed out that producing undef here is wrong in

general.

llvm-svn: 98649
This commit is contained in:
Duncan Sands 2010-03-16 18:50:54 +00:00
parent aee6e76a7d
commit 80f9637032

View File

@ -1,11 +0,0 @@
// RUN: %llvmgxx -S %s -o - | FileCheck %s
#include <utility>
typedef std::pair<int,int> P;
// CHECK: @_ZZ1fvE1X {{.*}} undef
P f() {
static const P X = P(1,2);
return X;
}