diff options
author | Toma Tabacu <toma.tabacu@imgtec.com> | 2015-04-27 15:21:38 +0000 |
---|---|---|
committer | Toma Tabacu <toma.tabacu@imgtec.com> | 2015-04-27 15:21:38 +0000 |
commit | bda745f5325a33d8d3fb6eae09e781f37a2262a7 (patch) | |
tree | fc257f2e8254da5acbe387f269b6b7066ff22b3c /llvm/lib/Target | |
parent | d31aadf5154e5b9af19713bc140089c3fa27a53e (diff) | |
download | bcm5719-llvm-bda745f5325a33d8d3fb6eae09e781f37a2262a7.tar.gz bcm5719-llvm-bda745f5325a33d8d3fb6eae09e781f37a2262a7.zip |
[mips] Correct bytes to bits in 2 comments. NFC.
llvm-svn: 235891
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index 89742c00038..1ada3612425 100644 --- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -1752,7 +1752,7 @@ bool MipsAsmParser::expandLoadImm(MCInst &Inst, SMLoc IDLoc, // <- hi16 -> <- lo16 -> // _________________________________ // | | | | - // | 16-bytes | 16-bytes | 16-bytes | + // | 16-bits | 16-bits | 16-bits | // |__________|__________|__________| // // For any 64-bit value that is representable as a 48-bit integer: @@ -1777,7 +1777,7 @@ bool MipsAsmParser::expandLoadImm(MCInst &Inst, SMLoc IDLoc, // <- hi16 -> <- lo16 -> // ___________________________________________ // | | | | | - // | 16-bytes | 16-bytes | 16-bytes | 16-bytes | + // | 16-bits | 16-bits | 16-bits | 16-bits | // |__________|__________|__________|__________| // // For all other values which are representable as a 64-bit integer: |