https://github.com/torvalds/linux
Raw File
Tip revision: 93ee7a9340d64f20295aacc3fb6a22b759323280 authored by Linus Torvalds on 14 August 2011, 22:09:08 UTC
Linux 3.1-rc2
Tip revision: 93ee7a9
code16gcc.h
/*
 * code16gcc.h
 *
 * This file is -include'd when compiling 16-bit C code.
 * Note: this asm() needs to be emitted before gcc emits any code.
 * Depending on gcc version, this requires -fno-unit-at-a-time or
 * -fno-toplevel-reorder.
 *
 * Hopefully gcc will eventually have a real -m16 option so we can
 * drop this hack long term.
 */

#ifndef __ASSEMBLY__
asm(".code16gcc");
#endif
back to top