aboutsummaryrefslogtreecommitdiff
path: root/sim/erc32/end.c
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1999-04-16 01:35:26 +0000
committerStan Shebs <shebs@codesourcery.com>1999-04-16 01:35:26 +0000
commitc906108c21474dfb4ed285bcc0ac6fe02cd400cc (patch)
treea0015aa5cedc19ccbab307251353a41722a3ae13 /sim/erc32/end.c
parentcd946cff9ede3f30935803403f06f6ed30cad136 (diff)
downloadfsf-binutils-gdb-c906108c21474dfb4ed285bcc0ac6fe02cd400cc.zip
fsf-binutils-gdb-c906108c21474dfb4ed285bcc0ac6fe02cd400cc.tar.gz
fsf-binutils-gdb-c906108c21474dfb4ed285bcc0ac6fe02cd400cc.tar.bz2
Initial creation of sourceware repositorygdb-4_18-branchpoint
Diffstat (limited to 'sim/erc32/end.c')
-rw-r--r--sim/erc32/end.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sim/erc32/end.c b/sim/erc32/end.c
new file mode 100644
index 0000000..973fd79
--- /dev/null
+++ b/sim/erc32/end.c
@@ -0,0 +1,26 @@
+#include <stdio.h>
+
+int
+main()
+{
+
+ unsigned int u1;
+ char *c;
+ double d1;
+ float *f1;
+
+ c = (char *) &u1;
+ u1 = 0x0F;
+ if (c[0] == 0x0F)
+ puts("#define HOST_LITTLE_ENDIAN\n");
+ else
+ puts("#define HOST_BIG_ENDIAN\n");
+
+ d1 = 1.0;
+ f1 = (float *) &d1;
+ if (*((int *) f1) != 0x3ff00000)
+ puts("#define HOST_LITTLE_ENDIAN_FLOAT\n");
+ else
+ puts("#define HOST_BIG_ENDIAN_FLOAT\n");
+ return 0;
+}