From: Rafael Espindola Date: Thu, 30 Jun 2016 12:44:52 +0000 (+0000) Subject: Don't repeat names in comments. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e7d61d581533558e64b239d45f1cabe958341c9;p=llvm Don't repeat names in comments. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274226 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index 6164ead4226..aea87486d70 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -83,8 +83,8 @@ Reloc::Model TargetMachine::getRelocationModel() const { return CodeGenInfo->getRelocationModel(); } -/// getCodeModel - Returns the code model. The choices are small, kernel, -/// medium, large, and target default. +/// Returns the code model. The choices are small, kernel, medium, large, and +/// target default. CodeModel::Model TargetMachine::getCodeModel() const { if (!CodeGenInfo) return CodeModel::Default; @@ -181,8 +181,7 @@ TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const { return Model; } -/// getOptLevel - Returns the optimization level: None, Less, -/// Default, or Aggressive. +/// Returns the optimization level: None, Less, Default, or Aggressive. CodeGenOpt::Level TargetMachine::getOptLevel() const { if (!CodeGenInfo) return CodeGenOpt::Default;