1
0
mirror of https://github.com/mirror/tinycc.git synced 2025-04-03 12:40:08 +08:00

Disable bounds_check1_test on arm

This commit is contained in:
herman ten brugge 2019-12-10 09:39:45 +01:00
parent 17850a51f5
commit 88dd577302

View File

@ -3971,6 +3971,7 @@ int force_get_order(unsigned long s)
/* Test failed when using bounds checking */
void bounds_check1_test (void)
{
#ifndef __arm__ /* gcc bug om arm */
struct s {
int x;
long long y;
@ -3979,4 +3980,5 @@ void bounds_check1_test (void)
s->y = 20;
pv(x);
pv(y);
#endif
}