summaryrefslogtreecommitdiff
path: root/orc/orcutils.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-09-14 14:45:40 -0700
committerDavid Schleef <ds@schleef.org>2010-09-14 14:45:40 -0700
commit24b5cedb4434372c35309a8114c892e26d017c6a (patch)
treea93cb4e67b44e60423872c293b7e0c087c8d70f3 /orc/orcutils.h
parent38bb6da67bea1f46c5faa5ea97439ea5efe96e08 (diff)
downloadorc-24b5cedb4434372c35309a8114c892e26d017c6a.tar.gz
c: Fix x2 used with float opcodes
Diffstat (limited to 'orc/orcutils.h')
-rw-r--r--orc/orcutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/orc/orcutils.h b/orc/orcutils.h
index 0923120..8c1c793 100644
--- a/orc/orcutils.h
+++ b/orc/orcutils.h
@@ -67,7 +67,7 @@ typedef unsigned long orc_uint64;
#endif
typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16;
typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32;
-typedef union { orc_int64 i; double f; orc_int32 x2[2]; orc_int16 x4[4]; } orc_union64;
+typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16 x4[4]; } orc_union64;
#endif
#ifndef TRUE