I have an union with a long double field.
I initialize a field and pass it to a function.
my_union foo;
foo.long_double = 10.10;
bar = baz(foo);
When compiling this code I get:
the ABI of passing union with long double has changed in GCC 4.4
Seem to be related to the changes mentioned here: http://gcc.gnu.org/gcc-4.4/changes.html
Does this mean I cannot pass an union having a long double as field? Why is this? And how can I solve this since I wanna use long double for storing large values.