llvm6: Missing include for LLVM 6 in PassWrapper.cpp

Just bog-standard compile error fixed by adding some new header files
This commit is contained in:
Alex Crichton 2018-01-22 17:28:09 -08:00
parent 03f86ae982
commit 2a7ed74d96

View File

@ -27,6 +27,7 @@
#if LLVM_VERSION_GE(6, 0)
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/IR/IntrinsicInst.h"
#else
#include "llvm/Target/TargetSubtargetInfo.h"
#endif