summaryrefslogtreecommitdiff
path: root/dragonegg
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-05-13 21:28:43 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-05-13 21:28:43 +0000
commite97b9f46f3faaaacaaa1964122be8fd30bc1e174 (patch)
tree0b86537572b5530b0553795aa5fc5959130dd91d /dragonegg
parentb82dec2262c1764b269bb0a9fdf78355e6e52fef (diff)
Delete dead code.
Diffstat (limited to 'dragonegg')
-rw-r--r--dragonegg/src/x86/ABIHack.inc44
1 files changed, 0 insertions, 44 deletions
diff --git a/dragonegg/src/x86/ABIHack.inc b/dragonegg/src/x86/ABIHack.inc
index 40e0162def6..78f6a712210 100644
--- a/dragonegg/src/x86/ABIHack.inc
+++ b/dragonegg/src/x86/ABIHack.inc
@@ -1644,50 +1644,6 @@ struct ptt
const int align_func;
};
-static const struct ptt processor_target_table[PROCESSOR_max] =
-{
- {&i386_cost, 4, 3, 4, 3, 4},
- {&i486_cost, 16, 15, 16, 15, 16},
- {&pentium_cost, 16, 7, 16, 7, 16},
- {&pentiumpro_cost, 16, 15, 16, 10, 16},
- {&geode_cost, 0, 0, 0, 0, 0},
- {&k6_cost, 32, 7, 32, 7, 32},
- {&athlon_cost, 16, 7, 16, 7, 16},
- {&pentium4_cost, 0, 0, 0, 0, 0},
- {&k8_cost, 16, 7, 16, 7, 16},
- {&nocona_cost, 0, 0, 0, 0, 0},
- {&core2_cost, 16, 10, 16, 10, 16},
- {&generic32_cost, 16, 7, 16, 7, 16},
- {&generic64_cost, 16, 10, 16, 10, 16},
- {&amdfam10_cost, 32, 24, 32, 7, 32},
- {&atom_cost, 16, 7, 16, 7, 16}
-};
-
-static const char *const cpu_names[TARGET_CPU_DEFAULT_max] =
-{
- "generic",
- "i386",
- "i486",
- "pentium",
- "pentium-mmx",
- "pentiumpro",
- "pentium2",
- "pentium3",
- "pentium4",
- "pentium-m",
- "prescott",
- "nocona",
- "core2",
- "atom",
- "geode",
- "k6",
- "k6-2",
- "k6-3",
- "athlon",
- "athlon-4",
- "k8",
- "amdfam10"
-};
/* Return the "natural" mode for TYPE. In most cases, this is just TYPE_MODE.