S/390: Fix 16 bit pc relative relocs.
[deliverable/binutils-gdb.git] / gas / config / bfin-parse.y
index 26070c1499950940f881dfdf6be663b46aa20ec2..87abd21549d72f819e3254c7f6f63d3e961bbf69 100644 (file)
@@ -22,7 +22,6 @@
 #include "as.h"
 
 #include "bfin-aux.h"  /* Opcode generating auxiliaries.  */
-#include "libbfd.h"
 #include "elf/common.h"
 #include "elf/bfin.h"
 
@@ -4494,7 +4493,7 @@ expr_1: expr_1 STAR expr_1
 EXPR_T
 mkexpr (int x, SYMBOL_T s)
 {
-  EXPR_T e = (EXPR_T) ALLOCATE (sizeof (struct expression_cell));
+  EXPR_T e = XNEW (struct expression_cell);
   e->value = x;
   EXPR_SYMBOL(e) = s;
   return e;
This page took 0.024994 seconds and 4 git commands to generate.