projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1387e72
)
vc4: When emitting an instruction to an existing temp, mark it non-SSA.
author
Eric Anholt
<eric@anholt.net>
Mon, 2 May 2016 19:36:56 +0000
(12:36 -0700)
committer
Eric Anholt
<eric@anholt.net>
Fri, 6 May 2016 17:25:55 +0000
(10:25 -0700)
Prevents a bug in the later control-flow support series.
src/gallium/drivers/vc4/vc4_qir.h
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/vc4/vc4_qir.h
b/src/gallium/drivers/vc4/vc4_qir.h
index
7ea6ec8
..
04ca8ed
100644
(file)
--- a/
src/gallium/drivers/vc4/vc4_qir.h
+++ b/
src/gallium/drivers/vc4/vc4_qir.h
@@
-533,6
+533,8
@@
static inline struct qinst * \
qir_##name##_dest(struct vc4_compile *c, struct qreg dest, \
struct qreg a) \
{ \
+ if (dest.file == QFILE_TEMP) \
+ c->defs[dest.index] = NULL; \
return qir_emit_nodef(c, qir_inst(QOP_##name, dest, a, \
c->undef)); \
}