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/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp | |
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/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp index 8476348bb01..202a23f4209 100644 --- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp +++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp @@ -204,7 +204,7 @@ static MCCodeGenInfo *createSystemZMCCodeGenInfo(StringRef TT, Reloc::Model RM, CM = CodeModel::Small; else if (CM == CodeModel::JITDefault) CM = RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium; - X->InitMCCodeGenInfo(RM, CM, OL); + X->initMCCodeGenInfo(RM, CM, OL); return X; } |