[AArch64][GlobalISel] Fix old use of % sigil in test.

My rebase had missed the new $ sigil we're using.

llvm-svn: 324051
This commit is contained in:
Amara Emerson 2018-02-02 02:14:42 +00:00
parent 711091c3c8
commit 572f6cecf1
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ body: |
; CHECK-LABEL: name: implicit_def_copy ; CHECK-LABEL: name: implicit_def_copy
; CHECK: [[DEF:%[0-9]+]]:gpr32 = IMPLICIT_DEF ; CHECK: [[DEF:%[0-9]+]]:gpr32 = IMPLICIT_DEF
; CHECK: [[COPY:%[0-9]+]]:gpr32all = COPY [[DEF]] ; CHECK: [[COPY:%[0-9]+]]:gpr32all = COPY [[DEF]]
; CHECK: %w0 = COPY [[COPY]] ; CHECK: $w0 = COPY [[COPY]]
%0(s32) = G_IMPLICIT_DEF %0(s32) = G_IMPLICIT_DEF
%1(s32) = COPY %0(s32) %1(s32) = COPY %0(s32)
%w0 = COPY %1(s32) $w0 = COPY %1(s32)
... ...