diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-06-25 23:19:58 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-06-25 23:19:58 +0000 |
commit | e44fd66f8c4737dd9db329690cfae6b3ac8563bb (patch) | |
tree | 26668a91fd6b6eb7c42419013ea48ada110a7bb9 | |
parent | 2d8dcc5bd1ddb20e926d40d45a4dbcdd68bd4bc1 (diff) | |
download | bcm5719-llvm-e44fd66f8c4737dd9db329690cfae6b3ac8563bb.tar.gz bcm5719-llvm-e44fd66f8c4737dd9db329690cfae6b3ac8563bb.zip |
Make PR20038.cpp test case portable to non-Itanium ABIs
The only call in this function is to the dtor, so there's no need to
name a non-portable mangled function name to match it.
llvm-svn: 211742
-rw-r--r-- | clang/test/CodeGenCXX/PR20038.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/PR20038.cpp b/clang/test/CodeGenCXX/PR20038.cpp index 8b3ffc6f53a..671b8bcd7ba 100644 --- a/clang/test/CodeGenCXX/PR20038.cpp +++ b/clang/test/CodeGenCXX/PR20038.cpp @@ -4,7 +4,7 @@ struct C { ~C(); }; extern bool b; -// CHECK: call void @_ZN1CD1Ev({{.*}}), !dbg [[DTOR_CALL_LOC:![0-9]*]] +// CHECK: call {{.*}}, !dbg [[DTOR_CALL_LOC:![0-9]*]] // CHECK: [[FUN4:.*]] = {{.*}}; [ DW_TAG_subprogram ] {{.*}} [def] [fun4] // CHECK: [[DTOR_CALL_LOC]] = metadata !{i32 [[@LINE+2]], i32 0, metadata [[FUN4_BLOCK:.*]], null} // CHECK: [[FUN4_BLOCK]] = metadata !{{{[^,]*}}, {{[^,]*}}, metadata [[FUN4]], |