summaryrefslogtreecommitdiff
path: root/src/ia64
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2010-07-23 09:14:00 -0400
committerAnthony Green <green@moxielogic.com>2010-07-23 09:14:00 -0400
commitd14178be4c49c3ada44a9fe9efe11d444372ddab (patch)
treead3ccae8704bff17f7b4b43b5cc4ff4af67c366a /src/ia64
parent3f5b1375ab1e2b8e3d593e21b27097a4a50f9b83 (diff)
downloadlibffi-d14178be4c49c3ada44a9fe9efe11d444372ddab.tar.gz
FFI_LAST_ABI fix
Diffstat (limited to 'src/ia64')
-rw-r--r--src/ia64/ffitarget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ia64/ffitarget.h b/src/ia64/ffitarget.h
index d85c049..0d2001d 100644
--- a/src/ia64/ffitarget.h
+++ b/src/ia64/ffitarget.h
@@ -34,8 +34,8 @@ typedef signed long long ffi_sarg;
typedef enum ffi_abi {
FFI_FIRST_ABI = 0,
FFI_UNIX, /* Linux and all Unix variants use the same conventions */
- FFI_DEFAULT_ABI = FFI_UNIX,
- FFI_LAST_ABI = FFI_DEFAULT_ABI + 1
+ FFI_LAST_ABI,
+ FFI_DEFAULT_ABI = FFI_UNIX
} ffi_abi;
#endif