diff options
author | alonmishne <alonmishne@gmail.com> | 2013-12-02 09:22:10 +0000 |
---|---|---|
committer | alonmishne <alonmishne@gmail.com> | 2013-12-02 09:22:10 +0000 |
commit | 6d46afe063095b1fabd433586daa89e4148ed1c6 (patch) | |
tree | e056d12404c920085fd66ffa96858cda4f1332be /pygments/lexers/asm.py | |
parent | ef01ffa9654bd88f94063448e4f5f6634390800c (diff) | |
download | pygments-6d46afe063095b1fabd433586daa89e4148ed1c6.tar.gz |
LLVM IR lexer: added missing closing quotes
Diffstat (limited to 'pygments/lexers/asm.py')
-rw-r--r-- | pygments/lexers/asm.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/asm.py b/pygments/lexers/asm.py index 3367cc5a..09e3543f 100644 --- a/pygments/lexers/asm.py +++ b/pygments/lexers/asm.py @@ -270,9 +270,9 @@ class LlvmLexer(RegexLexer): r'|oeq|one|olt|ogt|ole' r'|oge|ord|uno|ueq|une' r'|x' - r'|acq_rel|acquire|alignstack|atomic|catch|cleanup|filter - r'|inteldialect|max|min|monotonic|nand|personality|release - r'|seq_cst|singlethread|umax|umin|unordered|xchg + r'|acq_rel|acquire|alignstack|atomic|catch|cleanup|filter' + r'|inteldialect|max|min|monotonic|nand|personality|release' + r'|seq_cst|singlethread|umax|umin|unordered|xchg' # instructions r'|add|fadd|sub|fsub|mul|fmul|udiv|sdiv|fdiv|urem|srem|frem|shl' |