From 983307982a24d9508b1a2cf3acb21bbeacc1d6b9 Mon Sep 17 00:00:00 2001 From: seven-mile Date: Wed, 13 Nov 2024 17:52:49 +0000 Subject: [PATCH] [CIR][Transforms][NFC] Fix undesirable include of upstream --- .../lib/CIR/Dialect/Transforms/TargetLowering/LowerModule.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/clang/lib/CIR/Dialect/Transforms/TargetLowering/LowerModule.cpp b/clang/lib/CIR/Dialect/Transforms/TargetLowering/LowerModule.cpp index f6c75b39e516..a9266aa4ada8 100644 --- a/clang/lib/CIR/Dialect/Transforms/TargetLowering/LowerModule.cpp +++ b/clang/lib/CIR/Dialect/Transforms/TargetLowering/LowerModule.cpp @@ -11,10 +11,8 @@ // //===----------------------------------------------------------------------===// -// FIXME(cir): This header file is not exposed to the public API, but can be -// reused by CIR ABI lowering since it holds target-specific information. -#include "../../../../Basic/Targets.h" #include "clang/Basic/LangOptions.h" +#include "clang/Basic/TargetInfo.h" #include "clang/Basic/TargetOptions.h" #include "CIRLowerContext.h"