[clang] [llvm] [LFI] Add MCLFIRewriter infrastructure (PR #172906)
Zachary Yedidia via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 22 18:47:07 PDT 2026
================
@@ -0,0 +1,54 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// This file implements the MCLFIRewriter class, a base class that
+/// encapsulates the rewriting logic for MCInsts.
+///
+//===----------------------------------------------------------------------===//
+
+#include "llvm/MC/MCLFIRewriter.h"
+#include "llvm/MC/MCInst.h"
+#include "llvm/MC/MCInstrInfo.h"
+#include "llvm/MC/MCRegisterInfo.h"
+
+namespace llvm {
----------------
zyedidia wrote:
Thanks, this was fixed in #185508.
https://github.com/llvm/llvm-project/pull/172906
More information about the llvm-commits
mailing list