diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-02-03 20:22:35 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-02-03 20:22:35 +0000 |
commit | f408d1dc5824223a9bbb65a4bbdb9440d8d7c30e (patch) | |
tree | 432c99398843f74f30b505ab3fad00d7ac15759b | |
parent | ae3f7608756eb90d8dd5d014238437fcbf1c7de7 (diff) |
Drop value names from test to get -Asserts builds back to green.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174294 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/dynamic-cast-hint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/dynamic-cast-hint.cpp b/test/CodeGenCXX/dynamic-cast-hint.cpp index bfbae4e623..27b76e07ff 100644 --- a/test/CodeGenCXX/dynamic-cast-hint.cpp +++ b/test/CodeGenCXX/dynamic-cast-hint.cpp @@ -22,9 +22,9 @@ class X : public XA, public XB, public XC { }; void test(A *a, B *b) { volatile C *ac = dynamic_cast<C *>(a); -// CHECK: call i8* @__dynamic_cast(i8* %2, i8* bitcast ({ i8*, i8* }* @_ZTI1A to i8*), i8* bitcast ({ i8*, i8*, i32, i32, i8*, i64 }* @_ZTI1C to i8*), i64 -2) +// CHECK: i8* bitcast ({ i8*, i8* }* @_ZTI1A to i8*), i8* bitcast ({ i8*, i8*, i32, i32, i8*, i64 }* @_ZTI1C to i8*), i64 -2) volatile D *ad = dynamic_cast<D *>(a); -// CHECK: call i8* @__dynamic_cast(i8* %8, i8* bitcast ({ i8*, i8* }* @_ZTI1A to i8*), i8* bitcast ({ i8*, i8*, i8* }* @_ZTI1D to i8*), i64 0) +// CHECK: i8* bitcast ({ i8*, i8* }* @_ZTI1A to i8*), i8* bitcast ({ i8*, i8*, i8* }* @_ZTI1D to i8*), i64 0) volatile E *ae = dynamic_cast<E *>(a); // CHECK: i8* bitcast ({ i8*, i8* }* @_ZTI1A to i8*), i8* bitcast ({ i8*, i8*, i32, i32, i8*, i64, i8*, i64 }* @_ZTI1E to i8*), i64 0) volatile F *af = dynamic_cast<F *>(a); |