[llvm] [MIR] Allow overriding isSSA, noPhis, noVRegs in MIR input (PR #108546)

Dominik Montada via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 19 04:32:24 PDT 2024


================
@@ -2,11 +2,13 @@
 # RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -run-pass=early-tailduplication -verify-machineinstrs -o - %s | FileCheck %s
 
  # There are no phis in this testcase. Early tail duplication introduces them,
- # so the NoPHIs property needs to be cleared to avoid verifier errors
+ # so the NoPHIs property needs to be set explicitly to false to avoid verifier
+ # errors
 
 ---
 name:           tail_duplicate_nophis
 tracksRegLiveness: true
+noPhis: false
----------------
gargaroff wrote:

I went ahead and reverted the changes to this test. I also confirmed that it still works.

https://github.com/llvm/llvm-project/pull/108546


More information about the llvm-commits mailing list