From 6cbee3102368f0f92f3fc9fa49428ce935a79187 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Sun, 14 Nov 2004 19:00:55 +0000 Subject: [PATCH] re PR objc/18406 (ICE compiling Objective C code with long double arguments) 2004-11-14 Andrew Pinski 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 | 6 ++++++ gcc/objc/objc-act.c | 1 + 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6b5dce4ca3c6..dc69e3bc097f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-11-14 Andrew Pinski + + 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 PR target/18347 diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index b1762cfcce14..736c79aaae13 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -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 (); } -- 2.47.2