[MLIR] Fix GCC build failure

This commit is contained in:
Rahul Joshi 2020-11-09 11:57:52 -08:00
parent d7be9a4647
commit e29cb0908b
1 changed files with 1 additions and 1 deletions

View File

@ -2523,7 +2523,7 @@ struct GetGlobalMemrefOpLowering : public AllocLikeOpLowering {
// Both allocated and aligned pointers are same. We could potentially stash
// a nullptr for the allocated pointer since we do not expect any dealloc.
return {deadBeefPtr, gep};
return std::make_tuple(deadBeefPtr, gep);
}
};