From: Jordan Rupprecht Date: Thu, 20 Jun 2019 22:35:52 +0000 (+0000) Subject: [CodeGen][test] Use FileCheck variable matchers for better test support X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c2be4a865310bb71b09e7e0cfa34562c8735c09;p=clang [CodeGen][test] Use FileCheck variable matchers for better test support Summary: Depending on how clang is built, it may discard the IR names and use names like `%2` instead of `%result.ptr`, causing tests that rely on the IR name to fail. Using FileCheck matchers makes the test work regardless of how clang is built. This test passes with both `-fno-discard-value-names` and `-fdiscard-value-names` to make sure it passes regardless of the build mode. Reviewers: rnk, akhuang, aprantl, lebedev.ri Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D63625 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@363996 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-nrvo.cpp b/test/CodeGenCXX/debug-info-nrvo.cpp index a03571aeac..a5fcede744 100644 --- a/test/CodeGenCXX/debug-info-nrvo.cpp +++ b/test/CodeGenCXX/debug-info-nrvo.cpp @@ -1,5 +1,10 @@ -// RUN: %clangxx -target x86_64-unknown-unknown -g %s -emit-llvm -S -o - | FileCheck %s -// RUN: %clangxx -target x86_64-unknown-unknown -g -fno-elide-constructors %s -emit-llvm -S -o - | FileCheck %s -check-prefix=NOELIDE +// RUN: %clangxx -target x86_64-unknown-unknown -g \ +// RUN: %s -emit-llvm -S -o - | FileCheck %s + +// RUN: %clangxx -target x86_64-unknown-unknown -g \ +// RUN: -fno-elide-constructors %s -emit-llvm -S -o - | \ +// RUN: FileCheck %s -check-prefix=NOELIDE + struct Foo { Foo() = default; Foo(Foo &&other) { x = other.x; } @@ -21,8 +26,10 @@ int main() { // Check that NRVO variables are stored as a pointer with deref if they are // stored in the return register. -// CHECK: %result.ptr = alloca i8*, align 8 -// CHECK: call void @llvm.dbg.declare(metadata i8** %result.ptr, +// CHECK: %[[RESULT:.*]] = alloca i8*, align 8 +// CHECK: call void @llvm.dbg.declare(metadata i8** %[[RESULT]], // CHECK-SAME: metadata !DIExpression(DW_OP_deref) -// NOELIDE: call void @llvm.dbg.declare(metadata %struct.Foo* %foo, + +// NOELIDE: %[[FOO:.*]] = alloca %struct.Foo, align 4 +// NOELIDE: call void @llvm.dbg.declare(metadata %struct.Foo* %[[FOO]], // NOELIDE-SAME: metadata !DIExpression()