diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-10 22:50:57 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-10 22:50:57 +0000 |
commit | 38e05a9eb2cc6464359813cae848b8167d30efcc (patch) | |
tree | 68b6b8137bb83c7b39185feaccee78b1f3745cc4 /llvm/lib/Target/X86/X86AsmPrinter.cpp | |
parent | eedc12a1406c2d34dcd961a746d9be1474de6722 (diff) | |
download | bcm5719-llvm-38e05a9eb2cc6464359813cae848b8167d30efcc.tar.gz bcm5719-llvm-38e05a9eb2cc6464359813cae848b8167d30efcc.zip |
Update function names to conform to guidelines. No functional change intended.
llvm-svn: 163561
Diffstat (limited to 'llvm/lib/Target/X86/X86AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86AsmPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86AsmPrinter.cpp b/llvm/lib/Target/X86/X86AsmPrinter.cpp index a4785c96a89..33ab5675b5f 100644 --- a/llvm/lib/Target/X86/X86AsmPrinter.cpp +++ b/llvm/lib/Target/X86/X86AsmPrinter.cpp @@ -206,10 +206,10 @@ void X86AsmPrinter::printSymbolOperand(const MachineOperand &MO, } } -/// print_pcrel_imm - This is used to print an immediate value that ends up +/// printPCRelImm - This is used to print an immediate value that ends up /// being encoded as a pc-relative value. These print slightly differently, for /// example, a $ is not emitted. -void X86AsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo, +void X86AsmPrinter::printPCRelImm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) { const MachineOperand &MO = MI->getOperand(OpNo); switch (MO.getType()) { @@ -459,7 +459,7 @@ bool X86AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, return false; case 'P': // This is the operand of a call, treat specially. - print_pcrel_imm(MI, OpNo, O); + printPCRelImm(MI, OpNo, O); return false; case 'n': // Negate the immediate or print a '-' before the operand. |