qemu-e2k/target/tilegx
Markus Armbruster 0553d895f9 Normalize position of header guard
This is the common header guard idiom:

    /*
     * File comment
     */

    #ifndef GUARD_SYMBOL_H
    #define GUARD_SYMBOL_H

    ... actual contents ...

    #endif

A few of our headers have some #include before the guard.
target/tilegx/spr_def_64.h has #ifndef __DOXYGEN__ outside the guard.
A few more have the #define elsewhere.

Change them to match the common idiom.  For spr_def_64.h, that means
dropping #ifndef __DOXYGEN__.  While there, rename guard symbols to
make scripts/clean-header-guards.pl happy.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190604181618.19980-2-armbru@redhat.com>
[Rebased with conflicts resolved automatically]
2019-06-12 13:20:20 +02:00
..
Makefile.objs Move target-* CPU file into a target/ folder 2016-12-20 21:52:12 +01:00
cpu-param.h tcg: Split out target/arch/cpu-param.h 2019-06-10 07:03:34 -07:00
cpu.c Include qemu/module.h where needed, drop it from qemu-common.h 2019-06-12 13:18:33 +02:00
cpu.h Include qemu-common.h exactly where needed 2019-06-12 13:20:20 +02:00
helper.c Include qemu-common.h exactly where needed 2019-06-12 13:20:20 +02:00
helper.h target-tilegx: Use ctpop helper 2017-01-10 08:49:59 -08:00
opcode_tilegx.h Move target-* CPU file into a target/ folder 2016-12-20 21:52:12 +01:00
simd_helper.c Include qemu-common.h exactly where needed 2019-06-12 13:20:20 +02:00
spr_def_64.h Normalize position of header guard 2019-06-12 13:20:20 +02:00
translate.c tcg: Hoist max_insns computation to tb_gen_code 2019-04-24 13:04:33 -07:00