File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -1005,7 +1005,7 @@ class BinaryFunction {
1005
1005
Optional<StringRef> hasRestoredNameRegex (const StringRef NameRegex) const ;
1006
1006
1007
1007
// / Return a vector of all possible names for the function.
1008
- const std::vector<StringRef> getNames () const {
1008
+ std::vector<StringRef> getNames () const {
1009
1009
std::vector<StringRef> AllNames;
1010
1010
forEachName ([&AllNames](StringRef Name) {
1011
1011
AllNames.push_back (Name);
@@ -1427,17 +1427,15 @@ class BinaryFunction {
1427
1427
1428
1428
const CallSitesType &getColdCallSites () const { return ColdCallSites; }
1429
1429
1430
- const ArrayRef<uint8_t > getLSDAActionTable () const { return LSDAActionTable; }
1430
+ ArrayRef<uint8_t > getLSDAActionTable () const { return LSDAActionTable; }
1431
1431
1432
1432
const LSDATypeTableTy &getLSDATypeTable () const { return LSDATypeTable; }
1433
1433
1434
1434
const LSDATypeTableTy &getLSDATypeAddressTable () const {
1435
1435
return LSDATypeAddressTable;
1436
1436
}
1437
1437
1438
- const ArrayRef<uint8_t > getLSDATypeIndexTable () const {
1439
- return LSDATypeIndexTable;
1440
- }
1438
+ ArrayRef<uint8_t > getLSDATypeIndexTable () const { return LSDATypeIndexTable; }
1441
1439
1442
1440
const LabelsMapType &getLabels () const { return Labels; }
1443
1441
You can’t perform that action at this time.
0 commit comments