This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
Meanwhile, the target-memory.c functions are in a sort of preliminary state which assumes that the host and target have the same memory representations, and thus don't work correctly on cross- compilers. They are, however, written in a way that should make it relatively easy to improve them and include proper target representations. And they do function properly for a native compiler.
I think the best plan is to do a little more polishing work on this as it stands, and then commit it to mainline on the grounds that it's at least a distinct improvement over the current form, even if it's wrong for cross-compilers.
I will then work on implementing the "right" sort of memory transfer functions that don't piggyback off the host's memory representation.
+static size_t +size_float (int kind) +{ + return kind; +}
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |