[llvm] Move SI Lower Control Flow Up (PR #159557)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 12 03:26:13 PST 2025
================
@@ -0,0 +1,261 @@
+#pragma once
+
+#include "GCNSubtarget.h"
+#include "MCTargetDesc/AMDGPUMCTargetDesc.h"
+#include "llvm/ADT/SmallVector.h"
+#include "llvm/CodeGen/MachineBasicBlock.h"
+#include "llvm/CodeGen/MachineInstr.h"
+#include "llvm/Support/ErrorHandling.h"
+
+#include "SIInstrInfo.h"
+
+#include <cassert>
+#include <unordered_set>
----------------
arsenm wrote:
Probably should be using the llvm set and map types
https://github.com/llvm/llvm-project/pull/159557
More information about the llvm-commits
mailing list