busybox/util-linux
Rob Landley f4c684a1ef When compiling with FEATURE_MTAB_SUPPORT disabled, the call to erase_mtab()
can never be made because useMtab is initialized to 0, and all the other
assignments of that variable assign 0 to it.  Any compiler that can perform
simple constant propogation on local variables will optimize away if statements
testing against that variable, thus the call to erase_mtab() will never be
made.

When compiling for arm using gcc 3.3.3 with FEATURE_MTAB_SUPPORT disabled,
the linker complains that it can't find erase_mtab().  The arm optimizer isn't
exactly the brightest member of the family, and apparently needs to be hit over
the head with a hammer to get its' attention...
2005-08-23 20:03:17 +00:00
..
2003-03-19 09:13:01 +00:00
2004-04-14 17:51:38 +00:00
2003-03-19 09:13:01 +00:00
2005-04-21 01:49:05 +00:00
2004-08-28 00:43:07 +00:00
2004-03-27 10:02:48 +00:00
2004-01-18 18:18:33 +00:00
2005-05-20 17:22:18 +00:00