Commit 663715fbe2f63d651458179952f70769ab38f6f9
1 parent
e677137d
ARM TCG conversion 16/16.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4153 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
2 additions
and
25 deletions
configure
@@ -1108,8 +1108,10 @@ if test "$target_cpu" = "i386" ; then | @@ -1108,8 +1108,10 @@ if test "$target_cpu" = "i386" ; then | ||
1108 | fi | 1108 | fi |
1109 | elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then | 1109 | elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then |
1110 | echo "TARGET_ARCH=arm" >> $config_mak | 1110 | echo "TARGET_ARCH=arm" >> $config_mak |
1111 | + echo "CONFIG_NO_DYNGEN_OP=yes" >> $config_mak | ||
1111 | echo "#define TARGET_ARCH \"arm\"" >> $config_h | 1112 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
1112 | echo "#define TARGET_ARM 1" >> $config_h | 1113 | echo "#define TARGET_ARM 1" >> $config_h |
1114 | + echo "#define CONFIG_NO_DYNGEN_OP 1" >> $config_h | ||
1113 | bflt="yes" | 1115 | bflt="yes" |
1114 | elif test "$target_cpu" = "sparc" ; then | 1116 | elif test "$target_cpu" = "sparc" ; then |
1115 | echo "TARGET_ARCH=sparc" >> $config_mak | 1117 | echo "TARGET_ARCH=sparc" >> $config_mak |
target-arm/op.c deleted
100644 → 0
1 | -/* | ||
2 | - * ARM micro operations | ||
3 | - * | ||
4 | - * Copyright (c) 2003 Fabrice Bellard | ||
5 | - * Copyright (c) 2005-2007 CodeSourcery, LLC | ||
6 | - * | ||
7 | - * This library is free software; you can redistribute it and/or | ||
8 | - * modify it under the terms of the GNU Lesser General Public | ||
9 | - * License as published by the Free Software Foundation; either | ||
10 | - * version 2 of the License, or (at your option) any later version. | ||
11 | - * | ||
12 | - * This library is distributed in the hope that it will be useful, | ||
13 | - * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | - * Lesser General Public License for more details. | ||
16 | - * | ||
17 | - * You should have received a copy of the GNU Lesser General Public | ||
18 | - * License along with this library; if not, write to the Free Software | ||
19 | - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | - */ | ||
21 | -#include "exec.h" | ||
22 | - | ||
23 | -void OPPROTO op_dummy(void) | ||
24 | -{ | ||
25 | -} |