From f27e2234e11d175b59499ab31fdae49552ef201c Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Tue, 18 Oct 2022 01:18:04 +0200 Subject: [PATCH] nir/algebraic: support CL vector accessors Signed-off-by: Karol Herbst Reviewed-by: Jesse Natalie Reviewed-by: Jason Ekstrand Part-of: --- src/compiler/nir/nir_algebraic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_algebraic.py b/src/compiler/nir/nir_algebraic.py index 9a4e8054345..2adc4d026bf 100644 --- a/src/compiler/nir/nir_algebraic.py +++ b/src/compiler/nir/nir_algebraic.py @@ -287,7 +287,7 @@ class Constant(Value): _var_name_re = re.compile(r"(?P#)?(?P\w+)" r"(?:@(?Pint|uint|bool|float)?(?P\d+)?)?" r"(?P\([^\)]+\))?" - r"(?P\.[xyzw]+)?" + r"(?P\.[xyzwabcdefghijklmnop]+)?" r"$") class Variable(Value):