[PATCH] D90591: [ARM] Introduce t2DoLoopStartTP
Pirama Arumuga Nainar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 10 11:27:56 PST 2020
pirama added inline comments.
================
Comment at: llvm/lib/Target/ARM/MVEVPTOptimisationsPass.cpp:234
+
+ MachineInstrBuilder MI = BuildMI(*MBB, InsertPt, LoopStart->getDebugLoc(),
+ TII->get(ARM::t2DoLoopStartTP))
----------------
This variable seems unused outside of debugging purposes:
```
llvm/lib/Target/ARM/MVEVPTOptimisationsPass.cpp:234:23: warning: unused variable 'MI' [-Wunused-variable]
MachineInstrBuilder MI = BuildMI(*MBB, InsertPt, LoopStart->getDebugLoc(),
^
1 warning generated.
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90591/new/
https://reviews.llvm.org/D90591
More information about the llvm-commits
mailing list