aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-arm.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r--gas/config/tc-arm.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 3eb7e96..1cc0cea 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -30717,16 +30717,15 @@ md_begin (void)
unsigned mach;
unsigned int i;
- if ( (arm_ops_hsh = str_htab_create ()) == NULL
- || (arm_cond_hsh = str_htab_create ()) == NULL
- || (arm_vcond_hsh = str_htab_create ()) == NULL
- || (arm_shift_hsh = str_htab_create ()) == NULL
- || (arm_psr_hsh = str_htab_create ()) == NULL
- || (arm_v7m_psr_hsh = str_htab_create ()) == NULL
- || (arm_reg_hsh = str_htab_create ()) == NULL
- || (arm_reloc_hsh = str_htab_create ()) == NULL
- || (arm_barrier_opt_hsh = str_htab_create ()) == NULL)
- as_fatal (_("virtual memory exhausted"));
+ arm_ops_hsh = str_htab_create ();
+ arm_cond_hsh = str_htab_create ();
+ arm_vcond_hsh = str_htab_create ();
+ arm_shift_hsh = str_htab_create ();
+ arm_psr_hsh = str_htab_create ();
+ arm_v7m_psr_hsh = str_htab_create ();
+ arm_reg_hsh = str_htab_create ();
+ arm_reloc_hsh = str_htab_create ();
+ arm_barrier_opt_hsh = str_htab_create ();
for (i = 0; i < sizeof (insns) / sizeof (struct asm_opcode); i++)
if (str_hash_find (arm_ops_hsh, insns[i].template_name) == NULL)