Fix WasmEHFuncInfo.h to include what it uses

This fixes clang+llvm build with Modules and local submodule visibility.

llvm-svn: 335181
This commit is contained in:
Bruno Cardoso Lopes 2018-06-20 21:43:49 +00:00
parent 089c08b758
commit 94b4733251

View File

@ -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 *>;