diff options
author | Alex Bradbury <asb@lowrisc.org> | 2018-10-04 05:27:50 +0000 |
---|---|---|
committer | Alex Bradbury <asb@lowrisc.org> | 2018-10-04 05:27:50 +0000 |
commit | 0e16766b76550b2eb3416f386a62ab76450526c2 (patch) | |
tree | 1341a9887d24851409706f56d1afe3086dcbddbe /llvm/lib/Target/RISCV/RISCVISelLowering.h | |
parent | 5fbdce131de25393b7166c43b4b1604fc04a9f16 (diff) | |
download | bcm5719-llvm-0e16766b76550b2eb3416f386a62ab76450526c2.tar.gz bcm5719-llvm-0e16766b76550b2eb3416f386a62ab76450526c2.zip |
[RISCV][NFC] Fix naming of RISCVISelLowering::{LowerRETURNADDR,LowerFRAMEADDR}
Rename to lowerRETURNADDR, lowerFRAMEADDR in order to be consistent with the
LLVM coding style and the other functions in this file.
llvm-svn: 343752
Diffstat (limited to 'llvm/lib/Target/RISCV/RISCVISelLowering.h')
-rw-r--r-- | llvm/lib/Target/RISCV/RISCVISelLowering.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.h b/llvm/lib/Target/RISCV/RISCVISelLowering.h index 47dbc1af969..fe988bb14de 100644 --- a/llvm/lib/Target/RISCV/RISCVISelLowering.h +++ b/llvm/lib/Target/RISCV/RISCVISelLowering.h @@ -114,8 +114,8 @@ private: SDValue lowerConstantPool(SDValue Op, SelectionDAG &DAG) const; SDValue lowerSELECT(SDValue Op, SelectionDAG &DAG) const; SDValue lowerVASTART(SDValue Op, SelectionDAG &DAG) const; - SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const; - SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const; + SDValue lowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const; + SDValue lowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const; bool IsEligibleForTailCallOptimization(CCState &CCInfo, CallLoweringInfo &CLI, MachineFunction &MF, |