summaryrefslogtreecommitdiff
path: root/linux-user/main.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-08 14:25:03 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-08 14:25:03 +0000
commitec6338bac30f982c16c23106edcf1ce4a04da575 (patch)
treeeb42654dd53839e7d6b74d4d7c071be0ff533ae5 /linux-user/main.c
parent838104f60845adfa3ff5ad30e7f3a28c76f42bea (diff)
downloadqemu-ec6338bac30f982c16c23106edcf1ce4a04da575.tar.gz
removed obsolete x86 code copy support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3551 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/main.c')
-rw-r--r--linux-user/main.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/linux-user/main.c b/linux-user/main.c
index 716348cff8..b480a9ca28 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -1855,9 +1855,6 @@ void usage(void)
"-drop-ld-preload drop LD_PRELOAD for target process\n"
"\n"
"debug options:\n"
-#ifdef USE_CODE_COPY
- "-no-code-copy disable code copy acceleration\n"
-#endif
"-d options activate log (logfile=%s)\n"
"-p pagesize set the host page size to 'pagesize'\n",
TARGET_ARCH,
@@ -1956,11 +1953,6 @@ int main(int argc, char **argv)
} else if (!strcmp(r, "drop-ld-preload")) {
drop_ld_preload = 1;
} else
-#ifdef USE_CODE_COPY
- if (!strcmp(r, "no-code-copy")) {
- code_copy_enabled = 0;
- } else
-#endif
{
usage();
}