summaryrefslogtreecommitdiffstats
path: root/src/glsl/glsl_parser.yy
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-02-12 13:22:27 -0700
committerBrian Paul <[email protected]>2014-02-12 13:37:09 -0700
commit248606a5f065b88ee6328c233e54f163088de5d5 (patch)
tree8272721b2b5492ebae58aff2b7f6423db26b8462 /src/glsl/glsl_parser.yy
parentfd0620ff6c2c629e4888f4c98cfd6655adbfb69e (diff)
glsl: rename _restrict to restrict_flag
To fix MSVC compile breakage. Evidently, _restrict is an MSVC keyword, though the docs only mention __restrict (with two underscores). Note: we may want to also rename _volatile to volatile_flag to be consistent. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74900 Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/glsl_parser.yy')
-rw-r--r--src/glsl/glsl_parser.yy2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glsl_parser.yy b/src/glsl/glsl_parser.yy
index 6aed25464b1..369da5034d6 100644
--- a/src/glsl/glsl_parser.yy
+++ b/src/glsl/glsl_parser.yy
@@ -1655,7 +1655,7 @@ storage_qualifier:
{
STATIC_ASSERT(sizeof($$.flags.q) <= sizeof($$.flags.i));
memset(& $$, 0, sizeof($$));
- $$.flags.q._restrict = 1;
+ $$.flags.q.restrict_flag = 1;
}
| READONLY
{