From 3d6977a65a3ce2c515819c1ae6ceacf21a42ead2 Mon Sep 17 00:00:00 2001 From: Will Schmidt Date: Tue, 13 Jan 2015 18:17:08 +0000 Subject: [PATCH] Update multiline.ll testcase to handle (ppc64le) .localentry directive The ppc64le platform will emit a .localentry directive. This is triggering a false-positive against a CHECK-NOT: .loc in multiline.ll. Add a space "{{ }}" to the check-not line to allow for arguments, and prevent .localentry from matching. Differential Revision: http://reviews.llvm.org/D6935 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225810 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/DebugInfo/multiline.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/DebugInfo/multiline.ll b/test/DebugInfo/multiline.ll index d01f2c1ad76..bc365cc823d 100644 --- a/test/DebugInfo/multiline.ll +++ b/test/DebugInfo/multiline.ll @@ -14,7 +14,7 @@ ; CHECK: .loc 1 2 0{{$}} -; CHECK-NOT: .loc +; CHECK-NOT: .loc{{ }} ; CHECK: .loc 1 3 3 prologue_end{{$}} ; CHECK-NOT: .loc ; CHECK: .loc 1 3 9 is_stmt 0{{$}} -- 2.34.1