[PATCH] D126349: [TableGen] Remove code beads

Min-Yih Hsu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun May 29 10:40:36 PDT 2022


myhsu added inline comments.


================
Comment at: llvm/test/CodeGen/M68k/is-pcrel-register-operand-legal.mir:1
+# RUN: llc -march=m68k -verify-machineinstrs %s -o - | FileCheck %s
+
----------------
The entire file can be (much) shorter:
```
# RUN: llc -O0 -mtriple=m68k -start-after=prologepilog -verify-machineinstrs %s -o - | FileCheck %s

name: is-pcrel-register-operand-legal
body:             |
  bb.0.entry:
    # CHECK: ...
    MOV32jk $a1,  0, $a0, implicit-def $ccr
    MOV32kj 0, $a1, $a0, implicit-def $ccr
```


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

https://reviews.llvm.org/D126349



More information about the llvm-commits mailing list