File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -40,18 +40,18 @@ using namespace llvm;
4040
4141namespace {
4242
43- struct PrintRegister {
44- friend raw_ostream &operator <<(raw_ostream &OS, const PrintRegister &PR);
43+ using RegSubRegPair = TargetInstrInfo::RegSubRegPair;
4544
46- PrintRegister (RegSubRegPair R, const TargetRegisterInfo &I)
47- : Reg(R), TRI(I) {}
45+ struct PrintRegister {
46+ friend raw_ostream & operator <<(raw_ostream &OS, const PrintRegister &PR);
4847
49- private:
50- RegSubRegPair Reg;
51- const TargetRegisterInfo &TRI;
52- };
48+ PrintRegister (RegSubRegPair R, const TargetRegisterInfo &I)
49+ : Reg(R), TRI(I) {}
5350
54- using RegSubRegPair = TargetInstrInfo::RegSubRegPair;
51+ private:
52+ RegSubRegPair Reg;
53+ const TargetRegisterInfo &TRI;
54+ };
5555
5656 raw_ostream &operator << (raw_ostream &OS, const PrintRegister &PR)
5757 LLVM_ATTRIBUTE_UNUSED;
You can’t perform that action at this time.
0 commit comments