diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-27 16:13:04 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:09:21 -0500 |
commit | 092c73eefffc72d7464d05697b23a3954c078f87 (patch) | |
tree | 6f04a080e66db04cb696ff6a1dc09042800c7c6f /tcg | |
parent | rename HAVE_BYTESWAP_H to CONFIG_BYTESWAP_H (diff) | |
download | qemu-kvm-092c73eefffc72d7464d05697b23a3954c078f87.tar.gz qemu-kvm-092c73eefffc72d7464d05697b23a3954c078f87.tar.bz2 qemu-kvm-092c73eefffc72d7464d05697b23a3954c078f87.zip |
rename DEBUG_TCG to CONFIG_DEBUG_TCG
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 2 | ||||
-rw-r--r-- | tcg/tcg.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ #include "config.h" -#ifndef DEBUG_TCG +#ifndef CONFIG_DEBUG_TCG /* define it to suppress various consistency checks (faster) */ #define NDEBUG #endif @@ -121,7 +121,7 @@ typedef tcg_target_ulong TCGArg; are aliases for target_ulong and host pointer sized values respectively. */ -#ifdef DEBUG_TCG +#ifdef CONFIG_DEBUG_TCG #define DEBUG_TCGV 1 #endif |