https://github.com/torvalds/linux
Raw File
Tip revision: b01543dfe67bb1d191998e90d20534dc354de059 authored by Linus Torvalds on 18 February 2012, 23:53:33 UTC
Linux 3.3-rc4
Tip revision: b01543d
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