File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
llvm/lib/Target/PowerPC/MCTargetDesc Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -613,11 +613,8 @@ bool PPCInstPrinter::showRegistersWithPercentPrefix(const char *RegName) const {
613
613
614
614
// / getVerboseConditionalRegName - This method expands the condition register
615
615
// / when requested explicitly or targetting Darwin.
616
- const char *PPCInstPrinter::getVerboseConditionRegName (unsigned RegNum,
617
- unsigned RegEncoding,
618
- const MCSubtargetInfo &STI)
619
- const {
620
- // __SP__
616
+ const char *PPCInstPrinter::getVerboseConditionRegName (
617
+ unsigned RegNum, unsigned RegEncoding, const MCSubtargetInfo &STI) const {
621
618
if (!FullRegNames && !STI.hasFeature (PPC::FeatureFullRegisterNames))
622
619
return nullptr ;
623
620
if (RegNum < PPC::CR0EQ || RegNum > PPC::CR7UN)
Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ class PPCInstPrinter : public MCInstPrinter {
23
23
private:
24
24
bool showRegistersWithPercentPrefix (const char *RegName) const ;
25
25
bool showRegistersWithPrefix (const MCSubtargetInfo &STI) const ;
26
- const char *getVerboseConditionRegName (unsigned RegNum,
27
- unsigned RegEncoding,
26
+ const char *getVerboseConditionRegName (unsigned RegNum, unsigned RegEncoding,
28
27
const MCSubtargetInfo &STI) const ;
29
28
30
29
public:
You can’t perform that action at this time.
0 commit comments