diff options
author | Chris Lattner <sabre@nondot.org> | 2012-01-26 02:33:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2012-01-26 02:33:22 +0000 |
commit | e8c94f7d98e28d576a270dc3a32a5bf9516f5707 (patch) | |
tree | c266b2414092fd4e7b27362068282c752b3609bb | |
parent | fa77500d96bf667d517d859a682e06e557113f01 (diff) | |
download | bcm5719-llvm-e8c94f7d98e28d576a270dc3a32a5bf9516f5707.tar.gz bcm5719-llvm-e8c94f7d98e28d576a270dc3a32a5bf9516f5707.zip |
fix to go along with an llvm change: VMCore now returns an UndefValue
when asking for a ConstantStruct with all undef elements.
llvm-svn: 149025
-rw-r--r-- | clang/test/CodeGenCXX/const-init-cxx11.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/const-init-cxx11.cpp b/clang/test/CodeGenCXX/const-init-cxx11.cpp index fb5d2cce009..84459fdbb03 100644 --- a/clang/test/CodeGenCXX/const-init-cxx11.cpp +++ b/clang/test/CodeGenCXX/const-init-cxx11.cpp @@ -76,7 +76,7 @@ namespace BaseClass { struct E {}; struct Test2 : X<E,0>, X<E,1>, X<E,2>, X<E,3> {}; - // CHECK: @_ZN9BaseClass2t2E = global {{.*}} { [4 x i8] undef } + // CHECK: @_ZN9BaseClass2t2E = global {{.*}} undef extern constexpr Test2 t2 = Test2(); } |