diff options
Diffstat (limited to 'support/regression/tests/structparam.c.in')
-rw-r--r-- | support/regression/tests/structparam.c.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/regression/tests/structparam.c.in b/support/regression/tests/structparam.c.in index ddc997a5f..2e1ddad73 100644 --- a/support/regression/tests/structparam.c.in +++ b/support/regression/tests/structparam.c.in @@ -19,7 +19,7 @@ struct s } // Caller -#ifndef __SDCC_pdk14 // Lack of memory +#if !defined( __SDCC_pdk13) && !defined( __SDCC_pdk14) // Lack of memory {type} g({type} i, {type} j) { struct s s = {i, j}; @@ -29,7 +29,7 @@ struct s void testParam (void) { -#ifndef __SDCC_pdk14 // Lack of memory +#if !defined( __SDCC_pdk13) && !defined( __SDCC_pdk14) // Lack of memory ASSERT (g(23, 42) == 23 + 42); #endif } |