File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -1024,7 +1024,8 @@ void LiveRange::print(raw_ostream &OS) const {
10241024 for (const_vni_iterator i = vni_begin (), e = vni_end (); i != e;
10251025 ++i, ++vnum) {
10261026 const VNInfo *vni = *i;
1027- if (vnum) OS << ' ' ;
1027+ if (vnum)
1028+ OS << ' ' ;
10281029 OS << *vni;
10291030 assert (vnum == vni->id && " Bad VNInfo" );
10301031 }
@@ -1046,13 +1047,9 @@ void LiveInterval::print(raw_ostream &OS) const {
10461047}
10471048
10481049#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1049- LLVM_DUMP_METHOD void VNInfo::dump () const {
1050- dbgs () << *this << ' \n ' ;
1051- }
1050+ LLVM_DUMP_METHOD void VNInfo::dump () const { dbgs () << *this << ' \n ' ; }
10521051
1053- LLVM_DUMP_METHOD void LiveRange::dump () const {
1054- dbgs () << *this << ' \n ' ;
1055- }
1052+ LLVM_DUMP_METHOD void LiveRange::dump () const { dbgs () << *this << ' \n ' ; }
10561053
10571054LLVM_DUMP_METHOD void LiveInterval::SubRange::dump () const {
10581055 dbgs () << *this << ' \n ' ;
You can’t perform that action at this time.
0 commit comments