forked from OSchip/llvm-project
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:
parent
859f54b3f8
commit
b45fd5cdab
|
@ -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 *>;
|
||||
|
|
Loading…
Reference in New Issue