diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp index 804ff9f7ce9e863137e3454c2713cffb3e16bd7a..fcd2d5295d37fcbc43e50212d786c99708a1810d 100644 --- a/polly/lib/CodeGen/CodeGeneration.cpp +++ b/polly/lib/CodeGen/CodeGeneration.cpp @@ -358,7 +358,8 @@ private: } IntegerType *ClastStmtCodeGen::getIntPtrTy() { - return P->getAnalysis().getIntPtrType(Builder.getContext()); + // FIXME: This might need to get a proper address space. Hard code 0 for now. + return P->getAnalysis().getIntPtrType(Builder.getContext(), 0u); } const std::vector &ClastStmtCodeGen::getParallelLoops() {