diff options
author | Ian Romanick <[email protected]> | 2016-04-11 18:40:02 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-04-11 19:24:19 -0700 |
commit | 193a5cee6a535875542bb5d265bdeb21a8b93e9d (patch) | |
tree | 221bfca37a0a23ed85e6eb3c97c364695c3688df /src/compiler/nir/nir_opt_dce.c | |
parent | 18c8b927e205d7c8f2a04377b1fa3c4242074de1 (diff) |
nir: Fix typo in comment
Trivial.
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_opt_dce.c')
-rw-r--r-- | src/compiler/nir/nir_opt_dce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_opt_dce.c b/src/compiler/nir/nir_opt_dce.c index 32436c18b60..cab09dfffc3 100644 --- a/src/compiler/nir/nir_opt_dce.c +++ b/src/compiler/nir/nir_opt_dce.c @@ -71,7 +71,7 @@ init_instr(nir_instr *instr, struct exec_list *worklist) nir_tex_instr *tex_instr; /* We use the pass_flags to store the live/dead information. In DCE, we - * just treat it as a zero/non-zerl boolean for whether or not the + * just treat it as a zero/non-zero boolean for whether or not the * instruction is live. */ instr->pass_flags = 0; |