svn commit: r242946 - projects/bhyve/sys/dev/aic7xxx/aicasm
Neel Natu
neel at FreeBSD.org
Tue Nov 13 03:56:51 UTC 2012
Author: neel
Date: Tue Nov 13 03:56:50 2012
New Revision: 242946
URL: http://svnweb.freebsd.org/changeset/base/242946
Log:
Revert r229954 which in turn had reverted r228556 in projects/bhyve.
This was done to work around build issues when building projects/bhyve on an
8.x system at the time.
The workaround is no longer needed so re-instantiate r228556 in projects/bhyve.
Discussed with: grehan@
Obtained from: NetApp
Modified:
projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l
projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l
Modified: projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l
==============================================================================
--- projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l Tue Nov 13 03:27:43 2012 (r242945)
+++ projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l Tue Nov 13 03:56:50 2012 (r242946)
@@ -66,6 +66,8 @@ static char msgbuf[255];
extern int mmlex(void);
%}
+%option noinput
+
WORD [A-Za-z_][-A-Za-z_0-9]*
SPACE [ \t]+
MCARG [^(), \t]+
Modified: projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l
==============================================================================
--- projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l Tue Nov 13 03:27:43 2012 (r242945)
+++ projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l Tue Nov 13 03:56:50 2012 (r242946)
@@ -72,6 +72,8 @@ extern void mm_switch_to_buffer(YY_BUFFE
extern void mm_delete_buffer(YY_BUFFER_STATE);
%}
+%option noinput
+
PATH ([/]*[-A-Za-z0-9_.])+
WORD [A-Za-z_][-A-Za-z_0-9]*
SPACE [ \t]+
More information about the svn-src-projects
mailing list