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/BPF/MCTargetDesc/BPFMCTargetDesc.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/BPF/MCTargetDesc/BPFMCTargetDesc.cpp')
-rw-r--r-- | llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp b/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp index 95f0b02c204..c4cf4b82450 100644 --- a/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp +++ b/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp @@ -57,7 +57,7 @@ static MCCodeGenInfo *createBPFMCCodeGenInfo(StringRef TT, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) { MCCodeGenInfo *X = new MCCodeGenInfo(); - X->InitMCCodeGenInfo(RM, CM, OL); + X->initMCCodeGenInfo(RM, CM, OL); return X; } |