mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Fix comment typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86295 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e7e0d62efd
commit
c0ef244499
@ -512,7 +512,7 @@ void AsmPrinter::EmitXXStructorList(Constant *List) {
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// LEB 128 number encoding.
|
/// LEB 128 number encoding.
|
||||||
|
|
||||||
/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
|
/// PrintULEB128 - Print a series of hexadecimal values (separated by commas)
|
||||||
/// representing an unsigned leb128 value.
|
/// representing an unsigned leb128 value.
|
||||||
void AsmPrinter::PrintULEB128(unsigned Value) const {
|
void AsmPrinter::PrintULEB128(unsigned Value) const {
|
||||||
char Buffer[20];
|
char Buffer[20];
|
||||||
@ -525,7 +525,7 @@ void AsmPrinter::PrintULEB128(unsigned Value) const {
|
|||||||
} while (Value);
|
} while (Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
|
/// PrintSLEB128 - Print a series of hexadecimal values (separated by commas)
|
||||||
/// representing a signed leb128 value.
|
/// representing a signed leb128 value.
|
||||||
void AsmPrinter::PrintSLEB128(int Value) const {
|
void AsmPrinter::PrintSLEB128(int Value) const {
|
||||||
int Sign = Value >> (8 * sizeof(Value) - 1);
|
int Sign = Value >> (8 * sizeof(Value) - 1);
|
||||||
@ -546,7 +546,7 @@ void AsmPrinter::PrintSLEB128(int Value) const {
|
|||||||
// Emission and print routines
|
// Emission and print routines
|
||||||
//
|
//
|
||||||
|
|
||||||
/// PrintHex - Print a value as a hexidecimal value.
|
/// PrintHex - Print a value as a hexadecimal value.
|
||||||
///
|
///
|
||||||
void AsmPrinter::PrintHex(int Value) const {
|
void AsmPrinter::PrintHex(int Value) const {
|
||||||
char Buffer[20];
|
char Buffer[20];
|
||||||
|
Loading…
Reference in New Issue
Block a user