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/InstPrinter/X86ATTInstPrinter.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/InstPrinter/X86ATTInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp b/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp index 5118e4cad4e..46e72f9f602 100644 --- a/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp +++ b/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp @@ -89,12 +89,12 @@ void X86ATTInstPrinter::printSSECC(const MCInst *MI, unsigned Op, } } -/// 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 (e.g. for jumps and calls). These /// print slightly differently than normal immediates. For example, a $ is not /// emitted. -void X86ATTInstPrinter::print_pcrel_imm(const MCInst *MI, unsigned OpNo, - raw_ostream &O) { +void X86ATTInstPrinter::printPCRelImm(const MCInst *MI, unsigned OpNo, + raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNo); if (Op.isImm()) O << Op.getImm(); |