diff options
author | Jim Grosbach <grosbach@apple.com> | 2015-05-15 19:13:31 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2015-05-15 19:13:31 +0000 |
commit | 4c98cf77d92f0e5f5abc702130a103862bd064a5 (patch) | |
tree | 83cd6292187d0658b47351ba98ef27b63cacb169 /llvm/lib/Target/PowerPC | |
parent | 199dfc976f8f6768e9fab0608e8953f36027f6c5 (diff) | |
download | bcm5719-llvm-4c98cf77d92f0e5f5abc702130a103862bd064a5.tar.gz bcm5719-llvm-4c98cf77d92f0e5f5abc702130a103862bd064a5.zip |
MC: MCCodeGenInfo naming update. NFC.
s/InitMCCodeGenInfo/initMCCodeGenInfo/
llvm-svn: 237471
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp b/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp index 423e427a7a8..847437611a5 100644 --- a/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp +++ b/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp @@ -108,7 +108,7 @@ static MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM, (T.getArch() == Triple::ppc64 || T.getArch() == Triple::ppc64le)) CM = CodeModel::Medium; } - X->InitMCCodeGenInfo(RM, CM, OL); + X->initMCCodeGenInfo(RM, CM, OL); return X; } |