diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-08-02 13:13:33 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-08-02 13:13:33 -0700 |
commit | fe76841035ece13ad6640c920f2fd9d23144148b (patch) | |
tree | 9016964684b1cdd21ba69e1a866b326240b72b43 | |
parent | 014b7ea132d72bfaf44cf8b005030cc3b1e0d6b5 (diff) | |
download | pygments-fe76841035ece13ad6640c920f2fd9d23144148b.tar.gz |
Added a few more instructions to the PyPy lexer that are only seen in no-opt traces.
-rw-r--r-- | pygments/lexers/pypylog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py index 63031fa3..33331f03 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -55,8 +55,8 @@ class PyPyLogLexer(RegexLexer): r"float_add|float_sub|float_mul|float_truediv|" r"float_eq|float_ne|float_ge|float_gt|float_le|float_lt|" r"ptr_eq|" - r"force_token|quasiimmut_field|same_as|" - r"call_may_force|call_assembler|call_pure|call|" + r"force_token|quasiimmut_field|same_as|virtual_ref_finish|virtual_ref|" + r"call_may_force|call_assembler|call_loopinvariant|call_pure|call|" r"new_with_vtable|new_array|newstr|newunicode|new|" r"arraylen_gc|" r"getarrayitem_gc_pure|getarrayitem_gc|setarrayitem_gc|" |