Commit 757e725b authored by Peter Maydell's avatar Peter Maydell
Browse files

tcg: Clean up includes



Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.

This commit was created with scripts/clean-includes.

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Message-id: 1453832250-766-16-git-send-email-peter.maydell@linaro.org
parent 9b8bfe21
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
 * See the COPYING file in the top-level directory for details.
 */

#include "qemu/osdep.h"
#include "tcg-be-ldst.h"
#include "qemu/bitops.h"

+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
 * THE SOFTWARE.
 */

#include "qemu/osdep.h"
#include "elf.h"
#include "tcg-be-ldst.h"

+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
 * THE SOFTWARE.
 */

#include "qemu/osdep.h"
#include "tcg-be-ldst.h"

#ifndef NDEBUG
+1 −1
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
 * THE SOFTWARE.
 */

#include "qemu/osdep.h"
#include "tcg-be-ldst.h"

#ifdef HOST_WORDS_BIGENDIAN
@@ -1735,7 +1736,6 @@ static int tcg_target_callee_save_regs[] = {
/* The Linux kernel doesn't provide any information about the available
   instruction set. Probe it using a signal handler. */

#include <signal.h>

#ifndef use_movnz_instructions
bool use_movnz_instructions = false;
+1 −3
Original line number Diff line number Diff line
@@ -23,10 +23,8 @@
 * THE SOFTWARE.
 */

#include "config.h"
#include "qemu/osdep.h"

#include <stdlib.h>
#include <stdio.h>

#include "qemu-common.h"
#include "tcg-op.h"
Loading