From ebff3d7009feed6609331e34cc34aadfa4f382e9 Mon Sep 17 00:00:00 2001 From: Naomi Musgrave <nmusgrave@google.com> Date: Thu, 30 Jul 2015 17:59:55 +0000 Subject: [PATCH] simplified test case git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@243673 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenCXX/sanitize-dtor-tail-call.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGenCXX/sanitize-dtor-tail-call.cpp b/test/CodeGenCXX/sanitize-dtor-tail-call.cpp index a92ffa289f7..de2fd8c75c8 100644 --- a/test/CodeGenCXX/sanitize-dtor-tail-call.cpp +++ b/test/CodeGenCXX/sanitize-dtor-tail-call.cpp @@ -14,9 +14,9 @@ struct Simple { Simple s; // Simple internal member is poisoned by compiler-generated dtor -// CHECK: define {{.*}}SimpleD2Ev{{.*}} [[ATTRIBUTE:#[0-9]]] +// CHECK: define {{.*}}SimpleD2Ev{{.*}} [[ATTRIBUTE:#[0-9]+]] // CHECK: {{^ *}}call void @__sanitizer_dtor_callback -// CHECK-NOT: tail call void @__sanitizer_dtor_callback +// CHECK-NOT: call void @__sanitizer_dtor_callback // CHECK: ret void // Destructor does not emit any tail calls -- GitLab