From 8aeae15ebd3611954262d4812870e5fce31fb904 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 7 Feb 2009 00:42:54 +0000 Subject: [PATCH] Make a comment a doxygen comment. llvm-svn: 63988 --- lib/Target/X86/X86TargetMachine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index ce4b090c2c6..10638df2e44 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -254,10 +254,10 @@ bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase &PM, bool Fast, return false; } -// symbolicAddressesAreRIPRel - Return true if symbolic addresses are -// RIP-relative on this machine, taking into consideration the relocation -// model and subtarget. RIP-relative addresses cannot have a separate -// base or index register. +/// symbolicAddressesAreRIPRel - Return true if symbolic addresses are +/// RIP-relative on this machine, taking into consideration the relocation +/// model and subtarget. RIP-relative addresses cannot have a separate +/// base or index register. bool X86TargetMachine::symbolicAddressesAreRIPRel() const { return getRelocationModel() != Reloc::Static && Subtarget.isPICStyleRIPRel();