Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3028)

Unified Diff: src/cmd/8a/a.y

Issue 3976043: 8a, 8l: SSE
Patch Set: Created 13 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/cmd/8a/lex.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/8a/a.y
===================================================================
--- a/src/cmd/8a/a.y
+++ b/src/cmd/8a/a.y
@@ -53,7 +53,7 @@
%token <lval> LTYPE0 LTYPE1 LTYPE2 LTYPE3 LTYPE4
%token <lval> LTYPEC LTYPED LTYPEN LTYPER LTYPET LTYPES LTYPEM LTYPEI LTYPEG
%token <lval> LCONST LFP LPC LSB
-%token <lval> LBREG LLREG LSREG LFREG
+%token <lval> LBREG LLREG LSREG LFREG LMREG LXREG
%token <dval> LFCONST
%token <sval> LSCONST LSP
%token <sym> LNAME LLAB LVAR
@@ -336,6 +336,11 @@
$$ = nullgen;
$$.type = $1;
}
+| LMREG
+ {
+ $$ = nullgen;
+ $$.type = $1;
+ }
| LSP
{
$$ = nullgen;
@@ -346,6 +351,11 @@
$$ = nullgen;
$$.type = $1;
}
+| LXREG
+ {
+ $$ = nullgen;
+ $$.type = $1;
+ }
imm:
'$' con
« no previous file with comments | « no previous file | src/cmd/8a/lex.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b