[llvm-branch-commits] [mlir] Fix build issues founf in 19.x (PR #178221)
Hamid El Maazouz via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Jan 27 07:05:30 PST 2026
https://github.com/hamidelmaazouz updated https://github.com/llvm/llvm-project/pull/178221
>From 4caff49b8e6e762770a371aaebb6dd52ae78a302 Mon Sep 17 00:00:00 2001
From: Hamid El Maazouz <hamid.elmaazouz at gmail.com>
Date: Tue, 27 May 2025 12:10:01 +0100
Subject: [PATCH] [mlir] Build issue fixes in Affine dialect and SPIRV target
---
.../include/mlir/Dialect/Affine/IR/ValueBoundsOpInterfaceImpl.h | 2 ++
mlir/include/mlir/Target/SPIRV/Deserialization.h | 2 ++
mlir/include/mlir/Target/SPIRV/Serialization.h | 2 ++
3 files changed, 6 insertions(+)
diff --git a/mlir/include/mlir/Dialect/Affine/IR/ValueBoundsOpInterfaceImpl.h b/mlir/include/mlir/Dialect/Affine/IR/ValueBoundsOpInterfaceImpl.h
index 451c466fa0c95..efc36e46465d9 100644
--- a/mlir/include/mlir/Dialect/Affine/IR/ValueBoundsOpInterfaceImpl.h
+++ b/mlir/include/mlir/Dialect/Affine/IR/ValueBoundsOpInterfaceImpl.h
@@ -9,6 +9,8 @@
#ifndef MLIR_DIALECT_AFFINE_IR_VALUEBOUNDSOPINTERFACEIMPL_H
#define MLIR_DIALECT_AFFINE_IR_VALUEBOUNDSOPINTERFACEIMPL_H
+#include <cstdint>
+
#include "mlir/Support/LLVM.h"
namespace mlir {
diff --git a/mlir/include/mlir/Target/SPIRV/Deserialization.h b/mlir/include/mlir/Target/SPIRV/Deserialization.h
index e39258beeaac8..c20dac4f6c1e9 100644
--- a/mlir/include/mlir/Target/SPIRV/Deserialization.h
+++ b/mlir/include/mlir/Target/SPIRV/Deserialization.h
@@ -13,6 +13,8 @@
#ifndef MLIR_TARGET_SPIRV_DESERIALIZATION_H
#define MLIR_TARGET_SPIRV_DESERIALIZATION_H
+#include <cstdint>
+
#include "mlir/IR/OwningOpRef.h"
#include "mlir/Support/LLVM.h"
diff --git a/mlir/include/mlir/Target/SPIRV/Serialization.h b/mlir/include/mlir/Target/SPIRV/Serialization.h
index 613f0a423f9f8..2075ed64fe8ab 100644
--- a/mlir/include/mlir/Target/SPIRV/Serialization.h
+++ b/mlir/include/mlir/Target/SPIRV/Serialization.h
@@ -13,6 +13,8 @@
#ifndef MLIR_TARGET_SPIRV_SERIALIZATION_H
#define MLIR_TARGET_SPIRV_SERIALIZATION_H
+#include <cstdint>
+
#include "mlir/Support/LLVM.h"
namespace mlir {
More information about the llvm-branch-commits
mailing list