diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2016-04-14 17:23:33 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2016-04-14 17:23:33 +0000 |
commit | b72a65ff535673b5c7ef89372d6a0fdc70dd38c6 (patch) | |
tree | 6bf1ea491450fabe73ea124c5874463ee438182e /llvm/lib/CodeGen | |
parent | da70c17bfce29c136bad88600afaa36aa0b91259 (diff) | |
download | bcm5719-llvm-b72a65ff535673b5c7ef89372d6a0fdc70dd38c6.tar.gz bcm5719-llvm-b72a65ff535673b5c7ef89372d6a0fdc70dd38c6.zip |
[GlobalISel] Coding style and whitespace fixes
Reviewers: qcolombet
Subscribers: joker.eph, llvm-commits, vkalintiris
Differential Revision: http://reviews.llvm.org/D19119
llvm-svn: 266342
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp b/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp index 6fd179fc50c..98af7608592 100644 --- a/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp +++ b/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp @@ -79,7 +79,7 @@ bool IRTranslator::translateReturn(const Instruction &Inst) { // The target may mess up with the insertion point, but // this is not important as a return is the last instruction // of the block anyway. - return CLI->LowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret)); + return CLI->lowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret)); } bool IRTranslator::translateBr(const Instruction &Inst) { @@ -136,7 +136,7 @@ bool IRTranslator::runOnMachineFunction(MachineFunction &MF) { for (const Argument &Arg: F.args()) VRegArgs.push_back(getOrCreateVReg(Arg)); bool Succeeded = - CLI->LowerFormalArguments(MIRBuilder, F.getArgumentList(), VRegArgs); + CLI->lowerFormalArguments(MIRBuilder, F.getArgumentList(), VRegArgs); if (!Succeeded) report_fatal_error("Unable to lower arguments"); |