Commit f1265323 authored by Justin T. Gibbs's avatar Justin T. Gibbs

aic7xxx/aicasm:

   Remove the numerical_value portion of the grammer which is no
   longer referenced.  This eliminates a yacc warning.
parent 01564b55
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES. * POSSIBILITY OF SUCH DAMAGES.
* *
* $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_gram.y#28 $ * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_gram.y#29 $
* *
* $FreeBSD$ * $FreeBSD$
*/ */
...@@ -209,7 +209,7 @@ static int is_download_const(expression_t *immed); ...@@ -209,7 +209,7 @@ static int is_download_const(expression_t *immed);
%type <value> export ret f1_opcode f2_opcode jmp_jc_jnc_call jz_jnz je_jne %type <value> export ret f1_opcode f2_opcode jmp_jc_jnc_call jz_jnz je_jne
%type <value> numerical_value mode_value mode_list macro_arglist %type <value> mode_value mode_list macro_arglist
%left '|' %left '|'
%left '&' %left '&'
...@@ -784,17 +784,6 @@ macro_arglist: ...@@ -784,17 +784,6 @@ macro_arglist:
} }
; ;
numerical_value:
T_NUMBER
{
$$ = $1;
}
| '-' T_NUMBER
{
$$ = -$2;
}
;
scratch_ram: scratch_ram:
T_SRAM '{' T_SRAM '{'
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment