diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2018-03-29 23:32:54 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2018-03-29 23:32:54 +0000 |
commit | 4b4d85fd4d843b94c7aeb99ba45c3c1d40b5cf5e (patch) | |
tree | 1e7e1f3176aabd6cd9d155674f44ed78b106e631 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 4653b0021e94a7f945eb0e86501ffb114d372fcf (diff) | |
download | bcm5719-llvm-4b4d85fd4d843b94c7aeb99ba45c3c1d40b5cf5e.tar.gz bcm5719-llvm-4b4d85fd4d843b94c7aeb99ba45c3c1d40b5cf5e.zip |
Style update. NFC.
Rename 3 functions to start with lowercase letters. Don't repeat the
name in the comments.
llvm-svn: 328848
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 6b35d017eaa..da4244b8b6c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1902,19 +1902,19 @@ void AsmPrinter::EmitModuleIdents(Module &M) { // Emission and print routines // -/// EmitInt8 - Emit a byte directive and value. +/// Emit a byte directive and value. /// -void AsmPrinter::EmitInt8(int Value) const { +void AsmPrinter::emitInt8(int Value) const { OutStreamer->EmitIntValue(Value, 1); } -/// EmitInt16 - Emit a short directive and value. -void AsmPrinter::EmitInt16(int Value) const { +/// Emit a short directive and value. +void AsmPrinter::emitInt16(int Value) const { OutStreamer->EmitIntValue(Value, 2); } -/// EmitInt32 - Emit a long directive and value. -void AsmPrinter::EmitInt32(int Value) const { +/// Emit a long directive and value. +void AsmPrinter::emitInt32(int Value) const { OutStreamer->EmitIntValue(Value, 4); } |