Skip to content

Commit

Permalink
[IR] Mark get_class_var instruction as an exception raising instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
subbuss committed Aug 30, 2011
1 parent 11e997c commit aca9535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jruby/compiler/ir/Operation.java
Expand Up @@ -85,7 +85,7 @@ public enum Operation {
GET_CONST(OpFlags.f_is_load),
GET_GLOBAL_VAR(OpFlags.f_is_load),
GET_FIELD(OpFlags.f_is_load),
GET_CVAR(OpFlags.f_is_load),
GET_CVAR(OpFlags.f_is_load | OpFlags.f_can_raise_exception),
GET_ARRAY(OpFlags.f_is_load),
BINDING_LOAD(OpFlags.f_is_load),
SEARCH_CONST(OpFlags.f_is_load | OpFlags.f_can_raise_exception),
Expand Down

0 comments on commit aca9535

Please sign in to comment.