[IR] Include target specific intrinsic headers

After D71320, target-specific intrinsic headers should be included.
This commit is contained in:
Heejin Ahn 2019-12-12 14:47:46 -08:00
parent dbb3fec8ad
commit 5368f35efa
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#include "polly/CodeGen/RuntimeDebugBuilder.h" #include "polly/CodeGen/RuntimeDebugBuilder.h"
#include "polly/ScopInfo.h" #include "polly/ScopInfo.h"
#include "llvm/ADT/Triple.h" #include "llvm/ADT/Triple.h"
#include "llvm/IR/Intrinsics.h" #include "llvm/IR/IntrinsicsX86.h"
#include <sstream> #include <sstream>
using namespace llvm; using namespace llvm;

View File

@ -9,7 +9,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "polly/CodeGen/RuntimeDebugBuilder.h" #include "polly/CodeGen/RuntimeDebugBuilder.h"
#include "llvm/IR/Intrinsics.h" #include "llvm/IR/IntrinsicsNVPTX.h"
#include "llvm/IR/Module.h" #include "llvm/IR/Module.h"
#include <string> #include <string>
#include <vector> #include <vector>