32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 7c9054610e354340f9474dcd13a927f929912d1d Mon Sep 17 00:00:00 2001
|
|
From: Eugene Zelenko <eugene.zelenko@gmail.com>
|
|
Date: Tue, 6 Mar 2018 23:06:13 +0000
|
|
Subject: [PATCH] [Transforms] Add missing header for InstructionCombining.cpp,
|
|
in order to export LLVMInitializeInstCombine as extern "C". Fixes PR35947.
|
|
|
|
Patch by Brenton Bostick.
|
|
|
|
Differential revision: https://reviews.llvm.org/D44140
|
|
|
|
|
|
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@326843 91177308-0d34-0410-b5e6-96231b3b80d8
|
|
---
|
|
lib/Transforms/InstCombine/InstructionCombining.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/lib/Transforms/InstCombine/InstructionCombining.cpp b/lib/Transforms/InstCombine/InstructionCombining.cpp
|
|
index a3b2fe9..7ec7343 100644
|
|
--- a/lib/Transforms/InstCombine/InstructionCombining.cpp
|
|
+++ b/lib/Transforms/InstCombine/InstructionCombining.cpp
|
|
@@ -34,6 +34,7 @@
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "InstCombineInternal.h"
|
|
+#include "llvm-c/Initialization.h"
|
|
#include "llvm/ADT/APInt.h"
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
--
|
|
1.8.3.1
|
|
|