[llvm] [Mips] Fix expsensive_check test failure when x86 run readcyclecounte… (PR #127775)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 02:03:07 PST 2025
https://github.com/yingopq created https://github.com/llvm/llvm-project/pull/127775
…r.ll
Fix pr #127553
>From 540f230e7621eb93b13aedd916b03595e25edab1 Mon Sep 17 00:00:00 2001
From: Ying Huang <ying.huang at oss.cipunited.com>
Date: Wed, 19 Feb 2025 04:59:10 -0500
Subject: [PATCH] [Mips] Fix expsensive_check test failure when x86 run
readcyclecounter.ll
Fix pr #127553
---
llvm/lib/Target/Mips/MipsRegisterInfo.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/llvm/lib/Target/Mips/MipsRegisterInfo.cpp b/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
index c9eff0e0285f4..4d42d56a987c4 100644
--- a/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
+++ b/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
@@ -205,6 +205,7 @@ getReservedRegs(const MachineFunction &MF) const {
// Reserve hardware registers.
Reserved.set(Mips::HWR29);
+ Reserved.set(Mips::HWR2);
// Reserve DSP control register.
Reserved.set(Mips::DSPPos);
More information about the llvm-commits
mailing list