[llvm] r335181 - Fix WasmEHFuncInfo.h to include what it uses
Bruno Cardoso Lopes via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 20 14:43:49 PDT 2018
Author: bruno
Date: Wed Jun 20 14:43:49 2018
New Revision: 335181
URL: http://llvm.org/viewvc/llvm-project?rev=335181&view=rev
Log:
Fix WasmEHFuncInfo.h to include what it uses
This fixes clang+llvm build with Modules and local submodule visibility.
Modified:
llvm/trunk/include/llvm/CodeGen/WasmEHFuncInfo.h
Modified: llvm/trunk/include/llvm/CodeGen/WasmEHFuncInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/WasmEHFuncInfo.h?rev=335181&r1=335180&r2=335181&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/WasmEHFuncInfo.h (original)
+++ llvm/trunk/include/llvm/CodeGen/WasmEHFuncInfo.h Wed Jun 20 14:43:49 2018
@@ -14,6 +14,11 @@
#ifndef LLVM_CODEGEN_WASMEHFUNCINFO_H
#define LLVM_CODEGEN_WASMEHFUNCINFO_H
+#include "llvm/ADT/PointerUnion.h"
+#include "llvm/ADT/DenseMap.h"
+#include "llvm/CodeGen/MachineBasicBlock.h"
+#include "llvm/IR/BasicBlock.h"
+
namespace llvm {
using BBOrMBB = PointerUnion<const BasicBlock *, MachineBasicBlock *>;
More information about the llvm-commits
mailing list