File tree 2 files changed +2
-2
lines changed
llvm/include/llvm/Transforms/Utils 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ void applyFlowInference(FlowFunction &Func);
119
119
template <typename FT> class SampleProfileInference {
120
120
public:
121
121
using NodeRef = typename GraphTraits<FT *>::NodeRef;
122
- using BasicBlockT = typename std::remove_pointer <NodeRef>::type ;
122
+ using BasicBlockT = std::remove_pointer_t <NodeRef>;
123
123
using FunctionT = FT;
124
124
using Edge = std::pair<const BasicBlockT *, const BasicBlockT *>;
125
125
using BlockWeightMap = DenseMap<const BasicBlockT *, uint64_t >;
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ template <typename FT> class SampleProfileLoaderBaseImpl {
152
152
void dump () { Reader->dump (); }
153
153
154
154
using NodeRef = typename GraphTraits<FT *>::NodeRef;
155
- using BT = typename std::remove_pointer <NodeRef>::type ;
155
+ using BT = std::remove_pointer_t <NodeRef>;
156
156
using InstructionT = typename afdo_detail::IRTraits<BT>::InstructionT;
157
157
using BasicBlockT = typename afdo_detail::IRTraits<BT>::BasicBlockT;
158
158
using BlockFrequencyInfoT =
You can’t perform that action at this time.
0 commit comments