diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2019-09-22 09:28:47 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-09-22 09:28:47 +0000 |
commit | 1b38002c7dae02ab8b97f3d3b076e3e5f58c136f (patch) | |
tree | 95075eb06066009cef78333f3cd8989c3ad647ac /llvm/lib/Target/PowerPC/PPCISelLowering.cpp | |
parent | 38014c553f0d8aa8b5db4fe7b0a2d98c044580f3 (diff) | |
download | bcm5719-llvm-1b38002c7dae02ab8b97f3d3b076e3e5f58c136f.tar.gz bcm5719-llvm-1b38002c7dae02ab8b97f3d3b076e3e5f58c136f.zip |
Move classes into anonymous namespaces. NFC.
llvm-svn: 372495
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index ed9aae8f2e7..432d772185a 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -8187,7 +8187,7 @@ SDValue PPCTargetLowering::LowerBITCAST(SDValue Op, SelectionDAG &DAG) const { Op0.getOperand(1)); } -const SDValue *getNormalLoadInput(const SDValue &Op) { +static const SDValue *getNormalLoadInput(const SDValue &Op) { const SDValue *InputLoad = &Op; if (InputLoad->getOpcode() == ISD::BITCAST) InputLoad = &InputLoad->getOperand(0); |