[PATCH] D90918: [Arm][MC] Remove unused prefix in .arch_extension fp test

David Spickett via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 6 02:23:36 PST 2020


DavidSpickett created this revision.
Herald added subscribers: llvm-commits, danielkiss, kristof.beyls.
Herald added a project: LLVM.
DavidSpickett requested review of this revision.

There is no need for the CHECK-V8 prefix since
errors are never raised only on v8. It's v7 only
or v7 and v8.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D90918

Files:
  llvm/test/MC/ARM/directive-arch_extension-fp.s


Index: llvm/test/MC/ARM/directive-arch_extension-fp.s
===================================================================
--- llvm/test/MC/ARM/directive-arch_extension-fp.s
+++ llvm/test/MC/ARM/directive-arch_extension-fp.s
@@ -1,11 +1,12 @@
+@@ Note that we are only capturing the errors here
 @ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o /dev/null 2>&1 %s \
 @ RUN:   | FileCheck %s -check-prefix CHECK-V7 -check-prefix CHECK
 @ RUN: not llvm-mc -triple armv8-eabi -filetype asm -o /dev/null 2>&1 %s \
-@ RUN:   | FileCheck %s -check-prefix CHECK-V8 -check-prefix CHECK
+@ RUN:   | FileCheck %s -check-prefix CHECK
 @ RUN: not llvm-mc -triple thumbv7-eabi -filetype asm -o /dev/null 2>&1 %s \
 @ RUN:   | FileCheck %s -check-prefix CHECK-V7 -check-prefix CHECK
 @ RUN: not llvm-mc -triple thumbv8-eabi -filetype asm -o /dev/null 2>&1 %s \
-@ RUN:   | FileCheck %s -check-prefix CHECK-V8 -check-prefix CHECK
+@ RUN:   | FileCheck %s -check-prefix CHECK
 
 	.syntax unified
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D90918.303382.patch
Type: text/x-patch
Size: 986 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201106/7cf5c742/attachment.bin>


More information about the llvm-commits mailing list