Make a comment a doxygen comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63988 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-02-07 00:42:54 +00:00
parent 2325c7b1c5
commit 288b824cef

View 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();