aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-02-07 00:42:54 +0000
committerDan Gohman <gohman@apple.com>2009-02-07 00:42:54 +0000
commit288b824cef2a431a96e00ce6e88b10705f69734a (patch)
treed5fc25cd612522ca354519014abe9bdd43062b6c
parent2325c7b1c519283053bfaff00098eaa27ad4159b (diff)
downloadexternal_llvm-288b824cef2a431a96e00ce6e88b10705f69734a.zip
external_llvm-288b824cef2a431a96e00ce6e88b10705f69734a.tar.gz
external_llvm-288b824cef2a431a96e00ce6e88b10705f69734a.tar.bz2
Make a comment a doxygen comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63988 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86TargetMachine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp
index ce4b090..10638df 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();