summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2022-09-18 08:26:23 -0400
committerAnthony Green <green@moxielogic.com>2022-09-18 08:26:23 -0400
commitb49308eaac7288e01a36894598fb62bfaf61b238 (patch)
treecc135498246d074a2b298d91e069e738af676dda /testsuite
parent735e7be4fb2a0401a9ca66cc64004b8b3418feb3 (diff)
downloadlibffi-b49308eaac7288e01a36894598fb62bfaf61b238.tar.gz
Add missing ABI_ATTR
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/libffi.call/struct10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/libffi.call/struct10.c b/testsuite/libffi.call/struct10.c
index 17b1377..1edbd5f 100644
--- a/testsuite/libffi.call/struct10.c
+++ b/testsuite/libffi.call/struct10.c
@@ -16,7 +16,7 @@ struct s {
signed char s8;
};
-struct s make_s(void) {
+struct s ABI_ATTR make_s(void) {
struct s r;
r.s32 = 0x1234;
r.f32 = 7.0;