diff options
author | Eric Engestrom <[email protected]> | 2019-12-13 17:01:39 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-12-13 20:16:20 +0000 |
commit | d600b19640691200df64c2f69d188bf38efd33cc (patch) | |
tree | 7ebacbd0677cc1edc770b907304ab715525abdf8 | |
parent | 8074f68b3b02a0a60a276e88c5da36f42331bc28 (diff) |
intel/compiler: replace `0` pointer with `NULL`
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
-rw-r--r-- | src/intel/compiler/brw_eu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_eu.cpp b/src/intel/compiler/brw_eu.cpp index e30bbc75f2d..1261c726ace 100644 --- a/src/intel/compiler/brw_eu.cpp +++ b/src/intel/compiler/brw_eu.cpp @@ -399,7 +399,7 @@ bool brw_try_override_assembly(struct brw_codegen *p, int start_offset, ASSERTED bool valid = brw_validate_instructions(p->devinfo, p->store, start_offset, p->next_insn_offset, - 0); + NULL); assert(valid); return true; |