diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-11-25 16:42:51 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-11-25 16:42:51 +0000 |
commit | aef5bd049f45ddd3d0ddcca23608c78a8443457a (patch) | |
tree | 6268eaffffe173a6f181530efa42af695edc6b25 /llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | |
parent | f8e127eaf61ba9301d0a8fbc39de16d3a1c34248 (diff) | |
download | bcm5719-llvm-aef5bd049f45ddd3d0ddcca23608c78a8443457a.tar.gz bcm5719-llvm-aef5bd049f45ddd3d0ddcca23608c78a8443457a.zip |
Namespacify.
llvm-svn: 120146
Diffstat (limited to 'llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp index c8037b3b6ad..c8db0c40476 100644 --- a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp +++ b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp @@ -222,7 +222,7 @@ void PPCInstPrinter::printMemRegReg(const MCInst *MI, unsigned OpNo, /// stripRegisterPrefix - This method strips the character prefix from a /// register name so that only the number is left. Used by for linux asm. -const char *stripRegisterPrefix(const char *RegName) { +static const char *stripRegisterPrefix(const char *RegName) { switch (RegName[0]) { case 'r': case 'f': |