Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. diff --git a/mono/mini/method-to-ir.c b/mono/mini/method-to-ir.c
  2. index d021c6d..25e1e65 100644
  3. --- a/mono/mini/method-to-ir.c
  4. +++ b/mono/mini/method-to-ir.c
  5. @@ -5674,10 +5674,12 @@ mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_b
  6. if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY ||
  7. clause->flags == MONO_EXCEPTION_CLAUSE_FILTER ||
  8. clause->flags == MONO_EXCEPTION_CLAUSE_FAULT) {
  9. +#if 0
  10. if (seq_points) {
  11. NEW_SEQ_POINT (cfg, ins, clause->handler_offset, TRUE);
  12. MONO_ADD_INS (tblock, ins);
  13. }
  14. +#endif
  15. MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
  16. MONO_ADD_INS (tblock, ins);
  17.  
  18. martin@gondor:/work/catron/mono> git diff > diff
  19. martin@gondor:/work/catron/mono>
Add Comment
Please, Sign In to add comment