[llvm-commits] [llvm] r106311 - /llvm/trunk/lib/Target/X86/X86FastISel.cpp

Dan Gohman gohman at apple.com
Fri Jun 18 13:45:41 PDT 2010


Author: djg
Date: Fri Jun 18 15:45:41 2010
New Revision: 106311

URL: http://llvm.org/viewvc/llvm-project?rev=106311&view=rev
Log:
Make this comment less specific.

Modified:
    llvm/trunk/lib/Target/X86/X86FastISel.cpp

Modified: llvm/trunk/lib/Target/X86/X86FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86FastISel.cpp?rev=106311&r1=106310&r2=106311&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86FastISel.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86FastISel.cpp Fri Jun 18 15:45:41 2010
@@ -357,7 +357,8 @@
 
   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) {





More information about the llvm-commits mailing list