[PATCH] D109123: [ARM][test] Add new tests for (mul (add r, c0), c1)

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 2 02:35:43 PDT 2021


RKSimon added inline comments.


================
Comment at: llvm/test/CodeGen/ARM/addimm-mulimm.ll:3
+; RUN: llc -mtriple=armv6-none-eabi %s -o - | FileCheck %s --check-prefixes=CHECK-6
+; RUN: llc -mtriple=armv7a-none-eabi %s -o - | FileCheck %s --check-prefixes=CHECK-7
+
----------------
If you add a common CHECK you should be able to merge some of these (to reduce ambiguity I've avoided the '-6-' and '-7-' as well):
```
--check-prefixes=CHECK,CHECKV6
--check-prefixes=CHECK,CHECKV7
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D109123/new/

https://reviews.llvm.org/D109123



More information about the llvm-commits mailing list