qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 3983c206f9103fcb11db3f91b4a4da1b71f44526
parent 97cfdc309e76fd931bcd923aa836a79d6591400b
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Fri, 19 Feb 2016 14:17:22 -0500

add lexing sugar for backward compatibility

Diffstat:
Mlisc/parse.c | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lisc/parse.c b/lisc/parse.c @@ -160,7 +160,10 @@ lex() { "b", TB }, { "d", TD }, { "s", TS }, - { "loadw", OLoadsw }, /* for convenience */ + { "loadw", OLoad }, /* for convenience */ + { "loadl", OLoad }, + { "loads", OLoad }, + { "loadd", OLoad }, { 0, TXXX } }; static char tok[NString];