PR objc/18406
* obj-act.c (encode_type): 96bits doubles are encoded the
same way as 64bit and 128bit doubles are.
2004-11-09 Andrew Pinski <pinskia@physics.uc.edu>
PR objc/18406
* objc/compile/pr18406.m: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90361
138bc75d-0d04-0410-961f-
82ee72b054a4
+2004-11-09 Andrew Pinski <pinskia@physics.uc.edu>
+
+ PR objc/18406
+ * obj-act.c (encode_type): 96bits doubles are encoded the
+ same way as 64bit and 128bit doubles are.
+
2004-11-09 Joseph S. Myers <joseph@codesourcery.com>
* objc-act.c: Use %q, %< and %> for quoting in diagnostics.
{
case 32: c = 'f'; break;
case 64:
+ case 96:
case 128: c = 'd'; break;
default: abort ();
}
+2004-11-09 Andrew Pinski <pinskia@physics.uc.edu>
+
+ PR objc/18406
+ * objc/compile/pr18406.m: New test.
+
2004-11-09 Joseph S. Myers <joseph@codesourcery.com>
* gcc.dg/builtin-prefetch-1.c: Update expected diagnostic.
--- /dev/null
+@interface Test
+- (void)test: (long double)val;
+@end
+
+@implementation Test
+- (void)test: (long double)val
+{
+}
+@end