Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions include/triton/Analysis/Membar.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ struct AllocationSlice {
private:
std::tuple<Interval<size_t>, const void *, llvm::ArrayRef<int64_t>>
asTuple() const {
return std::make_tuple(allocationInterval, accessTy.getAsOpaquePointer(),
subsliceOffsets);
return {allocationInterval, accessTy.getAsOpaquePointer(), subsliceOffsets};
}
// Offsets from subslice. Empty when offsets are unknown
SmallVector<int64_t> subsliceOffsets;
Expand Down
Loading