From 39ed1ea1e0605598ba1e7be63206633463030791 Mon Sep 17 00:00:00 2001 From: Brice Dobry Date: Mon, 7 Jun 2021 19:14:54 -0700 Subject: [PATCH] Update test to use `signed char` ARM's default char is unsigned, so this test should explicitly specify that it wants a signed character. --- testsuite/c_test/sanity_test/SANITY0027-convert/convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/c_test/sanity_test/SANITY0027-convert/convert.c b/testsuite/c_test/sanity_test/SANITY0027-convert/convert.c index f86b630dfd..848ecbbe99 100644 --- a/testsuite/c_test/sanity_test/SANITY0027-convert/convert.c +++ b/testsuite/c_test/sanity_test/SANITY0027-convert/convert.c @@ -16,7 +16,7 @@ #include #include -char c = 0xff; +signed char c = 0xff; unsigned char uc = 0xff; short s; int i; -- Gitee