OSDN Git Service

Make a comment a doxygen comment.
authorDan Gohman <gohman@apple.com>
Sat, 7 Feb 2009 00:42:54 +0000 (00:42 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 7 Feb 2009 00:42:54 +0000 (00:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63988 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86TargetMachine.cpp

index ce4b090..10638df 100644 (file)
@@ -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();