diff options
author | Alexander Richardson <arichardson.kde@gmail.com> | 2017-09-22 08:52:03 +0000 |
---|---|---|
committer | Alexander Richardson <arichardson.kde@gmail.com> | 2017-09-22 08:52:03 +0000 |
commit | eb5ce8b92aa61954dff6d21b428ae14c112b29d8 (patch) | |
tree | 7cce24d67b5bc7c04d4d00435fb634d661d47632 | |
parent | c1f0b0ecabf48662c51f9cdaea868813f12daea3 (diff) | |
download | bcm5719-llvm-eb5ce8b92aa61954dff6d21b428ae14c112b29d8.tar.gz bcm5719-llvm-eb5ce8b92aa61954dff6d21b428ae14c112b29d8.zip |
[mips] clang-format MipsTargetMachine.cpp
This is my test commit as it only changes two lines
llvm-svn: 313968
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetMachine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.cpp b/llvm/lib/Target/Mips/MipsTargetMachine.cpp index 2f01b24c237..6199ffd789c 100644 --- a/llvm/lib/Target/Mips/MipsTargetMachine.cpp +++ b/llvm/lib/Target/Mips/MipsTargetMachine.cpp @@ -191,8 +191,8 @@ MipsTargetMachine::getSubtargetImpl(const Function &F) const { // creation will depend on the TM and the code generation flags on the // function that reside in TargetOptions. resetTargetOptions(F); - I = llvm::make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, - *this, Options.StackAlignmentOverride); + I = llvm::make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, *this, + Options.StackAlignmentOverride); } return I.get(); } @@ -210,7 +210,7 @@ namespace { class MipsPassConfig : public TargetPassConfig { public: MipsPassConfig(MipsTargetMachine &TM, PassManagerBase &PM) - : TargetPassConfig(TM, PM) { + : TargetPassConfig(TM, PM) { // The current implementation of long branch pass requires a scratch // register ($at) to be available before branch instructions. Tail merging // can break this requirement, so disable it when long branch pass is |