Fix wrong type for llvm::loadop (#293)
This commit is contained in:
parent
9f69b2f317
commit
c738e0fb07
|
@ -642,7 +642,7 @@ private:
|
||||||
auto memRefTy = memRefPtrTy.getPointerElementTy();
|
auto memRefTy = memRefPtrTy.getPointerElementTy();
|
||||||
auto int64Ty = LLVM::LLVMType::getInt64Ty(context);
|
auto int64Ty = LLVM::LLVMType::getInt64Ty(context);
|
||||||
|
|
||||||
Value memRef = rewriter.create<LLVM::LoadOp>(loc, memRefPtrTy, ptrToMemRef);
|
Value memRef = rewriter.create<LLVM::LoadOp>(loc, memRefTy, ptrToMemRef);
|
||||||
|
|
||||||
// Set dataPtr and alignedDataPtr;
|
// Set dataPtr and alignedDataPtr;
|
||||||
auto dataPtr =
|
auto dataPtr =
|
||||||
|
|
Loading…
Reference in New Issue