summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-07 22:45:13 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-07 22:45:13 +0000
commit42802218b0432fd5242ba9ddf71ee942fd8077e1 (patch)
treeb6d763846ce5fd81514293c2b7d81733a13996db /include
parentc90c6d5a146ba92176d35dff8d29b5b9753951a6 (diff)
downloadllvm-42802218b0432fd5242ba9ddf71ee942fd8077e1.tar.gz
llvm-42802218b0432fd5242ba9ddf71ee942fd8077e1.tar.bz2
llvm-42802218b0432fd5242ba9ddf71ee942fd8077e1.tar.xz
Comment cleanup. Don't repeat the function name in the comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/TargetLoweringObjectFileImpl.h34
1 files changed, 16 insertions, 18 deletions
diff --git a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
index 4e90e141ce..2e582ec051 100644
--- a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+++ b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
@@ -42,8 +42,8 @@ public:
const TargetMachine &TM,
const MCSymbol *Sym) const;
- /// getSectionForConstant - Given a constant with the SectionKind, return a
- /// section that it should be placed in.
+ /// Given a constant with the SectionKind, return a section that it should be
+ /// placed in.
virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
@@ -55,14 +55,14 @@ public:
SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Mangler *Mang, const TargetMachine &TM) const;
- /// getTTypeGlobalReference - Return an MCExpr to use for a reference to the
- /// specified type info global variable from exception handling information.
+ /// Return an MCExpr to use for a reference to the specified type info global
+ /// variable from exception handling information.
virtual const MCExpr *
getTTypeGlobalReference(const GlobalValue *GV, Mangler *Mang,
MachineModuleInfo *MMI, unsigned Encoding,
MCStreamer &Streamer) const;
- // getCFIPersonalitySymbol - The symbol that gets passed to .cfi_personality.
+ // The symbol that gets passed to .cfi_personality.
virtual MCSymbol *
getCFIPersonalitySymbol(const GlobalValue *GV, Mangler *Mang,
MachineModuleInfo *MMI) const;
@@ -80,12 +80,11 @@ class TargetLoweringObjectFileMachO : public TargetLoweringObjectFile {
public:
virtual ~TargetLoweringObjectFileMachO() {}
- /// getDepLibFromLinkerOpt - Extract the dependent library name from a linker
- /// option string. Returns StringRef() if the option does not specify a library.
+ /// Extract the dependent library name from a linker option string. Returns
+ /// StringRef() if the option does not specify a library.
virtual StringRef getDepLibFromLinkerOpt(StringRef LinkerOption) const;
- /// emitModuleFlags - Emit the module flags that specify the garbage
- /// collection information.
+ /// Emit the module flags that specify the garbage collection information.
virtual void emitModuleFlags(MCStreamer &Streamer,
ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
Mangler *Mang, const TargetMachine &TM) const;
@@ -100,20 +99,19 @@ public:
virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
- /// shouldEmitUsedDirectiveFor - This hook allows targets to selectively
- /// decide not to emit the UsedDirective for some symbols in llvm.used.
+ /// This hook allows targets to selectively decide not to emit the
+ /// UsedDirective for some symbols in llvm.used.
/// FIXME: REMOVE this (rdar://7071300)
virtual bool shouldEmitUsedDirectiveFor(const GlobalValue *GV,
Mangler *) const;
- /// getTTypeGlobalReference - The mach-o version of this method
- /// defaults to returning a stub reference.
+ /// The mach-o version of this method defaults to returning a stub reference.
virtual const MCExpr *
getTTypeGlobalReference(const GlobalValue *GV, Mangler *Mang,
MachineModuleInfo *MMI, unsigned Encoding,
MCStreamer &Streamer) const;
- // getCFIPersonalitySymbol - The symbol that gets passed to .cfi_personality.
+ // The symbol that gets passed to .cfi_personality.
virtual MCSymbol *
getCFIPersonalitySymbol(const GlobalValue *GV, Mangler *Mang,
MachineModuleInfo *MMI) const;
@@ -133,12 +131,12 @@ public:
SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Mangler *Mang, const TargetMachine &TM) const;
- /// getDepLibFromLinkerOpt - Extract the dependent library name from a linker
- /// option string. Returns StringRef() if the option does not specify a library.
+ /// Extract the dependent library name from a linker option string. Returns
+ /// StringRef() if the option does not specify a library.
virtual StringRef getDepLibFromLinkerOpt(StringRef LinkerOption) const;
- /// emitModuleFlags - Emit Obj-C garbage collection and linker options. Only
- /// linker option emission is implemented for COFF.
+ /// Emit Obj-C garbage collection and linker options. Only linker option
+ /// emission is implemented for COFF.
virtual void emitModuleFlags(MCStreamer &Streamer,
ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
Mangler *Mang, const TargetMachine &TM) const;