]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[build] Remove unused __keepme macro
authorMichael Brown <mcb30@ipxe.org>
Tue, 3 Mar 2015 16:08:39 +0000 (16:08 +0000)
committerMichael Brown <mcb30@ipxe.org>
Tue, 3 Mar 2015 16:08:39 +0000 (16:08 +0000)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/include/compiler.h

index a780d3efe94e524390712d7afb1ef3b1c8192693..0b6f61a3f745faec6e2df96f2bfd0c5be8de4100 100644 (file)
@@ -147,14 +147,6 @@ REQUEST_EXPANDED ( CONFIG_SYMBOL );
  */
 #define __weak         __attribute__ (( weak, noinline ))
 
-/** Prevent a function from being optimized away without inlining
- *
- * Calls to functions with void return type that contain no code in their body
- * may be removed by gcc's optimizer even when inlining is inhibited. Placing
- * this macro in the body of the function prevents that from occurring.
- */
-#define __keepme       asm("");
-
 #endif
 
 /** @defgroup dbg Debugging infrastructure