aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-06-18 20:45:41 +0000
committerDan Gohman <gohman@apple.com>2010-06-18 20:45:41 +0000
commit1415a602ade564390bd86476feaeb66cb3612951 (patch)
treef2dcf79bc198a669b5f94c1c855020051cf264b5
parentea9f151cbc1ce153c7605a02acc31f76cbb3c5a2 (diff)
Make this comment less specific.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106311 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86FastISel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp
index cbdfd64842..0c261ba6ec 100644
--- a/lib/Target/X86/X86FastISel.cpp
+++ b/lib/Target/X86/X86FastISel.cpp
@@ -357,7 +357,8 @@ bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
if (const PointerType *Ty = dyn_cast<PointerType>(V->getType()))
if (Ty->getAddressSpace() > 255)
- // Fast instruction selection doesn't support pointers through %fs or %gs
+ // Fast instruction selection doesn't support the special
+ // address spaces.
return false;
switch (Opcode) {