glsl: ignore trailing whitespace when define redefined
authorTimothy Arceri <tarceri@itsqueeze.com>
Wed, 10 Oct 2018 00:03:47 +0000 (11:03 +1100)
committerTimothy Arceri <tarceri@itsqueeze.com>
Wed, 10 Oct 2018 04:08:32 +0000 (15:08 +1100)
The Nvidia/AMD binary drivers allow this, as does GCC.

This fixes shader compilation issues in the latest update of
No Mans Sky.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/compiler/glsl/glcpp/glcpp-parse.y
src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c
src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected

index 4be5cfa3d54264bc8ff1cdb9d0454b59b74e1afb..1c095cb66f9fc616bff8019755b9d1c07ee392fb 100644 (file)
@@ -1074,6 +1074,20 @@ _token_list_equal_ignoring_space(token_list_t *a, token_list_t *b)
 
    while (1)
    {
+      if (node_a == NULL && node_b == NULL)
+         break;
+
+      /* Ignore trailing whitespace */
+      if (node_a == NULL && node_b->token->type == SPACE) {
+         while (node_b && node_b->token->type == SPACE)
+            node_b = node_b->next;
+      }
+
+      if (node_b == NULL && node_a->token->type == SPACE) {
+         while (node_a && node_a->token->type == SPACE)
+            node_a = node_a->next;
+      }
+
       if (node_a == NULL && node_b == NULL)
          break;
 
index ae7ea09f67e08c3fb8107e680d19dce7ca793617..2b084e0960a32c85c237cc4a6d395a60a79912e1 100644 (file)
@@ -2,6 +2,7 @@
 #define TWO  ( 1+1 )
 #define FOUR (2 + 2)
 #define SIX  (3 + 3)
+#define EIGHT (8 + 8)
 
 /* Redefinitions with whitespace in same places, but different amounts, (so no
  * error). */
@@ -9,6 +10,9 @@
 #define FOUR    (2     +  2)
 #define SIX    (3/*comment is whitespace*/+   /* collapsed */ /* to */ /* one */ /* space */  3)
 
+/* Trailing whitespace (no error) */
+#define EIGHT (8 + 8)       
+
 /* Redefinitions with whitespace in different places. Each of these should
  * trigger an error. */
 #define TWO  (1 + 1)
index 602bdef94c21fb59d3cf0ab9d84814b8172e1fb1..766849e34a99ab577075f0a5c708088498441dd2 100644 (file)
@@ -1,14 +1,15 @@
-0:14(9): preprocessor error: Redefinition of macro TWO
+0:18(9): preprocessor error: Redefinition of macro TWO
 
-0:15(9): preprocessor error: Redefinition of macro FOUR
+0:19(9): preprocessor error: Redefinition of macro FOUR
 
-0:16(9): preprocessor error: Redefinition of macro SIX
+0:20(9): preprocessor error: Redefinition of macro SIX
 
  
 
 
 
 
+
  
 
 
@@ -18,5 +19,8 @@
  
 
 
+
+