* as/link/lkar.h: sgetl and sputl are independent of endianness
[fw/sdcc] / support / regression / tests / bp.c
index 1671035b94c4264500d8aab2331b2a0d065f2240..029ee315cfd819d08aabef4bc3a931fea7455b67 100644 (file)
@@ -20,20 +20,20 @@ spoil(int a)
   return a;
 }
 
-#ifndef SDCC_mcs51
+#if defined(SDCC_mcs51) || defined(SDCC_pic16)
 
-#define ABOVE_MEM_SIZE      400
+// test devices with much less memory
+#define ABOVE_MEM_SIZE       30
 #define ABOVE_MEM_TEST_SIZE  17
-#define BELOW_MEM_SIZE      200
-#define BELOW_MEM_TEST_SIZE  74
+#define BELOW_MEM_SIZE       20
+#define BELOW_MEM_TEST_SIZE   7
 
 #else
 
-// test mcs51 with much less memory
-#define ABOVE_MEM_SIZE       30
+#define ABOVE_MEM_SIZE      400
 #define ABOVE_MEM_TEST_SIZE  17
-#define BELOW_MEM_SIZE       20
-#define BELOW_MEM_TEST_SIZE   7
+#define BELOW_MEM_SIZE      200
+#define BELOW_MEM_TEST_SIZE  74
 
 #endif