]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR objc/18406 (ICE compiling Objective C code with long double arguments)
authorAndrew Pinski <pinskia@physics.uc.edu>
Sun, 14 Nov 2004 19:00:55 +0000 (19:00 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Sun, 14 Nov 2004 19:00:55 +0000 (11:00 -0800)
2004-11-14  Andrew Pinski  <pinskia@physics.uc.edu>

        PR objc/18406
        * objc/obj-act.c (encode_type): 96bits doubles are encoded the
        same way as 64bit and 128bit doubles are.

From-SVN: r90628

gcc/ChangeLog
gcc/objc/objc-act.c

index 6b5dce4ca3c6a97e2635ce46cd2425bdbbe400d8..dc69e3bc097f6eb069d2db87aefb75ad05c5362c 100644 (file)
@@ -1,3 +1,9 @@
+2004-11-14  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       PR objc/18406
+       * objc/obj-act.c (encode_type): 96bits doubles are encoded the
+       same way as 64bit and 128bit doubles are.
+
 2004-11-14  Hans-Peter Nilsson  <hp@bitrange.com>
 
        PR target/18347
index b1762cfcce142a37877f7c09d34cedbc4cc2079d..736c79aaae13f4785b74450a47121fe287edee5c 100644 (file)
@@ -7389,6 +7389,7 @@ encode_type (tree type, int curtype, int format)
        {
        case 32:  c = 'f'; break;
        case 64:
+       case 96:
        case 128: c = 'd'; break;
        default: abort ();
        }