[llvm] 4fcab8a - [SandboxIR][Region][NFC] Fix windows build issue (#129082)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 14:25:09 PST 2025
Author: vporpo
Date: 2025-02-27T14:25:06-08:00
New Revision: 4fcab8a587c5932c70d66481726dc14167273670
URL: https://github.com/llvm/llvm-project/commit/4fcab8a587c5932c70d66481726dc14167273670
DIFF: https://github.com/llvm/llvm-project/commit/4fcab8a587c5932c70d66481726dc14167273670.diff
LOG: [SandboxIR][Region][NFC] Fix windows build issue (#129082)
This should fix the issue reported here:
https://discourse.llvm.org/t/second-stage-of-build-on-windows-fails-in-sandboxir/84841
Added:
Modified:
llvm/lib/SandboxIR/Region.cpp
Removed:
################################################################################
diff --git a/llvm/lib/SandboxIR/Region.cpp b/llvm/lib/SandboxIR/Region.cpp
index 086993e6dc872..2eb84bd72ed00 100644
--- a/llvm/lib/SandboxIR/Region.cpp
+++ b/llvm/lib/SandboxIR/Region.cpp
@@ -64,7 +64,7 @@ void Region::setAux(ArrayRef<Instruction *> Aux) {
auto &LLVMCtx = Ctx.LLVMCtx;
for (auto [Idx, I] : enumerate(Aux)) {
llvm::ConstantInt *IdxC =
- llvm::ConstantInt::get(LLVMCtx, llvm::APInt(32, Idx, false));
+ llvm::ConstantInt::get(llvm::Type::getInt32Ty(LLVMCtx), Idx, false);
assert(cast<llvm::Instruction>(I->Val)->getMetadata(AuxMDKind) == nullptr &&
"Instruction already in Aux!");
cast<llvm::Instruction>(I->Val)->setMetadata(
More information about the llvm-commits
mailing list