From ebeeafe61cc1f31bae03052de4c11daf2641c112 Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Tue, 31 Oct 2000 10:30:11 +0000 Subject: Better bundle template selection --- gas/config/tc-ia64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gas/config') diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index 065a0ee..1c0508e 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -5711,9 +5711,9 @@ match (int templ, int type, int slot) static inline int extra_goodness (int templ, int slot) { - if (match (templ, IA64_TYPE_F, slot)) + if (slot == 1 && match (templ, IA64_TYPE_F, slot)) return 2; - if (match (templ, IA64_TYPE_B, slot)) + if (slot == 2 && match (templ, IA64_TYPE_B, slot)) return 1; return 0; } -- cgit v1.1