summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/codegen
diff options
context:
space:
mode:
authorJakob Sinclair <[email protected]>2016-04-14 18:07:40 +0200
committerChad Versace <[email protected]>2016-04-26 14:36:29 -0700
commitea327dc451c1c8e46ff49a368c0d9c1485889fd3 (patch)
treea45bd443bb2b0077084e1a42af94d6e30123d4e3 /src/gallium/drivers/nouveau/codegen
parentde743a07aca97b7b96f6cd3b9f9e3d3c8bf5b845 (diff)
gallium: Remove every double semi-colon
Signed-off-by: Jakob Sinclair <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/codegen')
-rw-r--r--src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp
index 9ea1065b806..3d25ad928ef 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp
@@ -169,7 +169,7 @@ void DominatorTree::build()
do {
p = 0;
for (v = 1; v < count; ++v) {
- nw = &BasicBlock::get(vert[DOM(v)])->dom;;
+ nw = &BasicBlock::get(vert[DOM(v)])->dom;
nv = &BasicBlock::get(vert[v])->dom;
if (nw->getGraph() && !nv->getGraph()) {
++p;