diff options
author | Anders Carlsson <andersca@mac.com> | 2010-02-05 06:58:06 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-02-05 06:58:06 +0000 |
commit | 7e673c4c11cd1a26e87f666c37c744e9f0446dd9 (patch) | |
tree | 41ab8a1ccb21d1383071850a49f89893f5136f23 | |
parent | 6f7a17b718385464966251ee421b314570d32731 (diff) |
Fix a test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95374 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/pointers-to-data-members.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGenCXX/pointers-to-data-members.cpp b/test/CodeGenCXX/pointers-to-data-members.cpp index 3a10cb1fcf..d96eb03b8d 100644 --- a/test/CodeGenCXX/pointers-to-data-members.cpp +++ b/test/CodeGenCXX/pointers-to-data-members.cpp @@ -23,7 +23,8 @@ namespace ZeroInit { int A::*a; } sa; - // CHECK: @_ZN8ZeroInit3ssaE = global [2 x %0] [%0 { [2 x i64] [i64 -1, i64 -1] } + // CHECK: @_ZN8ZeroInit3ssaE = + // CHECK: [2 x i64] [i64 -1, i64 -1] struct { int A::*aa[2]; } ssa[2]; |