From 572f6cecf1c835c71f8df0c2e7fbe44b0f11953a Mon Sep 17 00:00:00 2001 From: Amara Emerson Date: Fri, 2 Feb 2018 02:14:42 +0000 Subject: [PATCH] [AArch64][GlobalISel] Fix old use of % sigil in test. My rebase had missed the new $ sigil we're using. llvm-svn: 324051 --- llvm/test/CodeGen/AArch64/GlobalISel/select-implicit-def.mir | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/select-implicit-def.mir b/llvm/test/CodeGen/AArch64/GlobalISel/select-implicit-def.mir index 4389dced5217..131b96c17492 100644 --- a/llvm/test/CodeGen/AArch64/GlobalISel/select-implicit-def.mir +++ b/llvm/test/CodeGen/AArch64/GlobalISel/select-implicit-def.mir @@ -39,8 +39,8 @@ body: | ; CHECK-LABEL: name: implicit_def_copy ; CHECK: [[DEF:%[0-9]+]]:gpr32 = IMPLICIT_DEF ; CHECK: [[COPY:%[0-9]+]]:gpr32all = COPY [[DEF]] - ; CHECK: %w0 = COPY [[COPY]] + ; CHECK: $w0 = COPY [[COPY]] %0(s32) = G_IMPLICIT_DEF %1(s32) = COPY %0(s32) - %w0 = COPY %1(s32) + $w0 = COPY %1(s32) ...