File tree 4 files changed +4
-5
lines changed
4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ class MCPseudoProbeDecoder {
510
510
return iterator_range (It->second );
511
511
}
512
512
513
- const ArrayRef<MCDecodedPseudoProbeInlineTree> getInlineTreeVec () const {
513
+ ArrayRef<MCDecodedPseudoProbeInlineTree> getInlineTreeVec () const {
514
514
return InlineTreeVec;
515
515
}
516
516
Original file line number Diff line number Diff line change @@ -1343,8 +1343,7 @@ struct InformationCache {
1343
1343
1344
1344
// / Return all functions that might be called indirectly, only valid for
1345
1345
// / closed world modules (see isClosedWorldModule).
1346
- const ArrayRef<Function *>
1347
- getIndirectlyCallableFunctions (Attributor &A) const ;
1346
+ ArrayRef<Function *> getIndirectlyCallableFunctions (Attributor &A) const ;
1348
1347
1349
1348
// / Return the flat address space if the associated target has.
1350
1349
std::optional<unsigned > getFlatAddressSpace () const ;
Original file line number Diff line number Diff line change @@ -3285,7 +3285,7 @@ InformationCache::FunctionInfo::~FunctionInfo() {
3285
3285
It.getSecond ()->~InstructionVectorTy ();
3286
3286
}
3287
3287
3288
- const ArrayRef<Function *>
3288
+ ArrayRef<Function *>
3289
3289
InformationCache::getIndirectlyCallableFunctions (Attributor &A) const {
3290
3290
assert (A.isClosedWorldModule () && " Cannot see all indirect callees!" );
3291
3291
return IndirectlyCallableFunctions;
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ class ComplexPattern {
252
252
const Record *getValueType () const { return Ty; }
253
253
unsigned getNumOperands () const { return NumOperands; }
254
254
const std::string &getSelectFunc () const { return SelectFunc; }
255
- const ArrayRef<const Record *> getRootNodes () const { return RootNodes; }
255
+ ArrayRef<const Record *> getRootNodes () const { return RootNodes; }
256
256
bool hasProperty (enum SDNP Prop) const { return Properties & (1 << Prop); }
257
257
unsigned getComplexity () const { return Complexity; }
258
258
bool wantsRoot () const { return WantsRoot; }
You can’t perform that action at this time.
0 commit comments