aboutsummaryrefslogtreecommitdiff
path: root/Source/Parser/wp_parser.tab.h
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2020-10-22 21:15:06 -0700
committerGravatar GitHub <noreply@github.com> 2020-10-22 21:15:06 -0700
commita9a8a54c46eff474b4a2832f2d3038274be75abf (patch)
tree8df9e750c321462b75eb42f8950463aeeb2ebb73 /Source/Parser/wp_parser.tab.h
parentcb199e221ae698ac13fdda691985e001ee84039b (diff)
downloadWarpX-a9a8a54c46eff474b4a2832f2d3038274be75abf.tar.gz
WarpX-a9a8a54c46eff474b4a2832f2d3038274be75abf.tar.zst
WarpX-a9a8a54c46eff474b4a2832f2d3038274be75abf.zip
Fix NVCC Regression in Parser (#1458)
* Fix NVCC Regression in Parser Fix a regression with the recompilation of the parser that shows up with NVCC and GNUmake on Summit. * Modify Parser's makefile to remove #line and rename bison's output file to .cpp Co-authored-by: Weiqun Zhang <weiqunzhang@lbl.gov>
Diffstat (limited to 'Source/Parser/wp_parser.tab.h')
-rw-r--r--Source/Parser/wp_parser.tab.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/Source/Parser/wp_parser.tab.h b/Source/Parser/wp_parser.tab.h
index aba980f57..54fa231f4 100644
--- a/Source/Parser/wp_parser.tab.h
+++ b/Source/Parser/wp_parser.tab.h
@@ -1,9 +1,8 @@
-/* A Bison parser, made by GNU Bison 3.5.1. */
+/* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison interface for Yacc-like parsers in C
- Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation,
- Inc.
+ Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -31,9 +30,6 @@
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
-/* Undocumented macros, especially those whose name start with YY_,
- are private implementation details. Do not rely on them. */
-
#ifndef YY_YY_WP_PARSER_TAB_H_INCLUDED
# define YY_YY_WP_PARSER_TAB_H_INCLUDED
/* Debug traces. */
@@ -69,9 +65,10 @@ extern int yydebug;
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+
union YYSTYPE
{
-#line 19 "wp_parser.y"
+
struct wp_node* n;
amrex_real d;
@@ -79,9 +76,9 @@ union YYSTYPE
enum wp_f1_t f1;
enum wp_f2_t f2;
-#line 83 "wp_parser.tab.h"
};
+
typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1