aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2017-01-13 16:07:49 +0000
committerLionel Landwerlin <[email protected]>2017-01-20 16:46:29 +0000
commit0c3d05872310fc57915c9d642da82324221679d3 (patch)
tree2b8365ccb8116df80bc3cbefd6d69bd09cebdbbe
parentbac6fe5c77cfe0f6ebe7055773995fb59977757f (diff)
spirv: fix warn string typo
Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r--src/compiler/spirv/vtn_variables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c
index 61a3701e435..a543a52dd05 100644
--- a/src/compiler/spirv/vtn_variables.c
+++ b/src/compiler/spirv/vtn_variables.c
@@ -1132,7 +1132,7 @@ apply_var_decoration(struct vtn_builder *b, nir_variable *nir_var,
case SpvDecorationFPRoundingMode:
case SpvDecorationFPFastMathMode:
case SpvDecorationAlignment:
- vtn_warn("Decoraiton only allowed for CL-style kernels: %s",
+ vtn_warn("Decoration only allowed for CL-style kernels: %s",
spirv_decoration_to_string(dec->decoration));
break;
}