diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-11-06 22:38:38 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-11-06 22:38:38 +0000 |
commit | b29e155c539235a8762e8da74c57469b7290261e (patch) | |
tree | f507a9328014d3dba87551c5732a509f53bfe44a /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 408aa56fb5acc9961903ad6fb55495fde6e41a6e (diff) | |
download | bcm5719-llvm-b29e155c539235a8762e8da74c57469b7290261e.tar.gz bcm5719-llvm-b29e155c539235a8762e8da74c57469b7290261e.zip |
Fix comment typos.
llvm-svn: 86295
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 43aaebfe864..cedf7758d32 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -512,7 +512,7 @@ void AsmPrinter::EmitXXStructorList(Constant *List) { //===----------------------------------------------------------------------===// /// 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. void AsmPrinter::PrintULEB128(unsigned Value) const { char Buffer[20]; @@ -525,7 +525,7 @@ void AsmPrinter::PrintULEB128(unsigned Value) const { } 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. void AsmPrinter::PrintSLEB128(int Value) const { int Sign = Value >> (8 * sizeof(Value) - 1); @@ -546,7 +546,7 @@ void AsmPrinter::PrintSLEB128(int Value) const { // 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 { char Buffer[20]; |