From 1515768867a450ce656bb516943c8ddbccfadc05 Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Thu, 23 Oct 2025 17:41:09 +0100 Subject: [PATCH] Add missing includes to headers --- include/LLVMSPIRVLib.h | 3 +++ include/LLVMSPIRVOpts.h | 1 + 2 files changed, 4 insertions(+) diff --git a/include/LLVMSPIRVLib.h b/include/LLVMSPIRVLib.h index 48834d8be8..f1737040f7 100644 --- a/include/LLVMSPIRVLib.h +++ b/include/LLVMSPIRVLib.h @@ -43,8 +43,11 @@ #include "LLVMSPIRVOpts.h" +#include #include +#include #include +#include namespace llvm { // Pass initialization functions need to be declared before inclusion of diff --git a/include/LLVMSPIRVOpts.h b/include/LLVMSPIRVOpts.h index 0c90914eea..a6857bce46 100644 --- a/include/LLVMSPIRVOpts.h +++ b/include/LLVMSPIRVOpts.h @@ -47,6 +47,7 @@ #include #include #include +#include namespace llvm { class IntrinsicInst;