projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d21104
)
Add missing break statement
author
Ian Romanick
<ian.d.romanick@intel.com>
Wed, 21 Apr 2010 22:08:08 +0000
(15:08 -0700)
committer
Ian Romanick
<ian.d.romanick@intel.com>
Wed, 21 Apr 2010 22:08:08 +0000
(15:08 -0700)
ir_variable.cpp
patch
|
blob
|
history
diff --git
a/ir_variable.cpp
b/ir_variable.cpp
index 12992a9b8120098146acb2d68af5329f102c1b83..a2c0803e55a44de7e590682712303cd73f5b62a6 100644
(file)
--- a/
ir_variable.cpp
+++ b/
ir_variable.cpp
@@
-46,6
+46,7
@@
add_variable(const char *name, enum ir_variable_mode mode,
case ir_var_inout:
var->shader_in = true;
var->shader_out = true;
+ break;
case ir_var_out:
var->shader_out = true;
break;