Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Tiger
nolimips
Commits
bcf77b48
Commit
bcf77b48
authored
Feb 02, 2016
by
Etienne Renault
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for flex 2.6.0
* src/parse/asm-scan.ll.gen.py: here.
parent
bce877f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/parse/asm-scan.ll.gen.py
src/parse/asm-scan.ll.gen.py
+6
-4
No files found.
src/parse/asm-scan.ll.gen.py
View file @
bcf77b48
...
...
@@ -276,10 +276,12 @@ print ("""
/* Depending upon the version of Flex (> 2.5.4), there might be a
function to reclaim all the memory Flex has allocated. If not,
simulate it. */
#if !( YY_FLEX_MAJOR_VERSION >= 2
\
&& YY_FLEX_MINOR_VERSION >= 5
\
&& defined YY_FLEX_SUBMINOR_VERSION
\
&& YY_FLEX_SUBMINOR_VERSION >= 5)
#if !((YY_FLEX_MAJOR_VERSION >= 2
\
&& YY_FLEX_MINOR_VERSION >= 6) ||
\
(YY_FLEX_MAJOR_VERSION >= 2
\
&& YY_FLEX_MINOR_VERSION >= 5
\
&& defined YY_FLEX_SUBMINOR_VERSION
\
&& YY_FLEX_SUBMINOR_VERSION >= 5))
static void
yylex_destroy(void)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment