summaryrefslogtreecommitdiff
path: root/test/Unit/umodti3_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Unit/umodti3_test.c')
-rw-r--r--test/Unit/umodti3_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Unit/umodti3_test.c b/test/Unit/umodti3_test.c
index affeaced..3f6696ac 100644
--- a/test/Unit/umodti3_test.c
+++ b/test/Unit/umodti3_test.c
@@ -35,8 +35,8 @@ int test__umodti3(tu_int a, tu_int b, tu_int expected_r)
expected_rt.all = expected_r;
printf("error in __umodti3: 0x%llX%.16llX %% 0x%llX%.16llX = "
"0x%llX%.16llX, expected 0x%llX%.16llX\n",
- at.high, at.low, bt.high, bt.low, rt.high, rt.low,
- expected_rt.high, expected_rt.low);
+ at.s.high, at.s.low, bt.s.high, bt.s.low, rt.s.high, rt.s.low,
+ expected_rt.s.high, expected_rt.s.low);
}
return r != expected_r;
}