[llvm-commits] [125246] Do not map 80 bit and 96 bit float point types to

dpatel at apple.com dpatel at apple.com
Thu Mar 22 11:31:31 PDT 2007


Revision: 125246
Author:   dpatel
Date:     2007-03-22 11:31:30 -0700 (Thu, 22 Mar 2007)

Log Message:
-----------
Do not map 80 bit and 96 bit float point types to
64 bit LLVM type.

Patch by Duncan Sands.

Modified Paths:
--------------
    apple-local/branches/llvm/gcc/llvm-types.cpp

Modified: apple-local/branches/llvm/gcc/llvm-types.cpp
===================================================================
--- apple-local/branches/llvm/gcc/llvm-types.cpp	2007-03-22 17:31:43 UTC (rev 125245)
+++ apple-local/branches/llvm/gcc/llvm-types.cpp	2007-03-22 18:31:30 UTC (rev 125246)
@@ -471,8 +471,6 @@
       debug_tree(type);
       abort();        
     case 32: return SET_TYPE_LLVM(type, Type::FloatTy);
-    case 80:     // Map long doubles to doubles.
-    case 96:     // Map long doubles to doubles.
     case 64: return SET_TYPE_LLVM(type, Type::DoubleTy);
     case 128:
       // 128-bit long doubles map onto { double, double }.





More information about the llvm-commits mailing list