summaryrefslogtreecommitdiffstats
path: root/third_party/mesa/MesaLib/src
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-20 15:45:17 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-20 15:45:17 +0000
commit1b6b676e43be7e4d8bce87fa2b3e136477d4a899 (patch)
tree7bee9dea51993505208561dee52398bad898ff17 /third_party/mesa/MesaLib/src
parent9812632e220e0895064d6897fa59077c535d92f7 (diff)
downloadchromium_src-1b6b676e43be7e4d8bce87fa2b3e136477d4a899.zip
chromium_src-1b6b676e43be7e4d8bce87fa2b3e136477d4a899.tar.gz
chromium_src-1b6b676e43be7e4d8bce87fa2b3e136477d4a899.tar.bz2
Enable -Wself-assign-memvar for Mesa, merge upstream fix for the one violation
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10808045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147658 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/mesa/MesaLib/src')
-rw-r--r--third_party/mesa/MesaLib/src/glsl/ir.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/third_party/mesa/MesaLib/src/glsl/ir.h b/third_party/mesa/MesaLib/src/glsl/ir.h
index fa246b5..5aa7c6d 100644
--- a/third_party/mesa/MesaLib/src/glsl/ir.h
+++ b/third_party/mesa/MesaLib/src/glsl/ir.h
@@ -989,7 +989,6 @@ public:
{
this->ir_type = ir_type_loop_jump;
this->mode = mode;
- this->loop = loop;
}
virtual ir_loop_jump *clone(void *mem_ctx, struct hash_table *) const;
@@ -1013,9 +1012,6 @@ public:
/** Mode selector for the jump instruction. */
enum jump_mode mode;
-private:
- /** Loop containing this break instruction. */
- ir_loop *loop;
};
/**