[PATCH] [clang][MIPS] Removing __SIZEOF_INT128__ macro for MIPS64
    Simon Atanasyan 
    simon at atanasyan.com
       
    Tue Dec  2 02:21:45 PST 2014
    
    
  
REPOSITORY
  rL LLVM
================
Comment at: lib/Frontend/InitPreprocessor.cpp:665
@@ -664,2 +664,3 @@
                    TI.getTypeWidth(TI.getWIntType()), TI, Builder);
-  if (TI.hasInt128Type())
+  if (TI.hasInt128Type() && !(TI.getTriple().getArch() == llvm::Triple::mips64el
+                   || TI.getTriple().getArch() == llvm::Triple::mips64))
----------------
sagar wrote:
> atanasyan wrote:
> > I would add a comment describes that it is a temporary workaround while MIPS has no fully supported 128-bit integers and we do not want to get an error from limit.h.
> Hi @atanasyan,
> 
> Should I add a comment and submit a new patch ?
I think it is not necessary now, because this patch has been committed already.
http://reviews.llvm.org/D6402
    
    
More information about the cfe-commits
mailing list