restored else branch for other ports
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 27 May 2006 21:02:49 +0000 (21:02 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 27 May 2006 21:02:49 +0000 (21:02 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4196 4a8a32a2-be11-0410-ad9d-d568d2c75423

support/regression/tests/float.c

index 448782ee76f36b8fdcaeeb5b8cd7143e25fd71f9..e2585aa3fad42a97150d36b4fa818fa15f88ad01 100644 (file)
 #endif
 
 #ifdef SDCC_mcs51
-#define STORAGE xdata
-#define XDATA xdata
+#  define STORAGE xdata
+#  define XDATA xdata
 #elif SDCC_pic16
-#define STORAGE code
-#define XDATA
+#  define STORAGE code
+#  define XDATA
+#else
+#  define STORAGE
+#  define XDATA
 #endif
 
 XDATA volatile float left, right, result;