diff options
author | Georg Brandl <georg@python.org> | 2012-12-25 11:17:27 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-12-25 11:17:27 +0100 |
commit | a9fbeaaaf096e924c6547f98ea9270303b84a613 (patch) | |
tree | 51a32a154b97feabece617246205b33cbc4144e8 /pygments/lexers/asm.py | |
parent | a5861cb934ab3b90517a1bf2383ba1ce50247e3d (diff) | |
download | pygments-a9fbeaaaf096e924c6547f98ea9270303b84a613.tar.gz |
Closes #823: add fast-math keywords to LLVM.
Diffstat (limited to 'pygments/lexers/asm.py')
-rw-r--r-- | pygments/lexers/asm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/asm.py b/pygments/lexers/asm.py index 340cd136..a87ca9c2 100644 --- a/pygments/lexers/asm.py +++ b/pygments/lexers/asm.py @@ -240,8 +240,8 @@ class LlvmLexer(RegexLexer): r'|linkonce_odr|weak|weak_odr|appending|dllimport|dllexport' r'|common|default|hidden|protected|extern_weak|external' r'|thread_local|zeroinitializer|undef|null|to|tail|target|triple' - r'|datalayout|volatile|nuw|nsw|exact|inbounds|align' - r'|addrspace|section|alias|module|asm|sideeffect|gc|dbg' + r'|datalayout|volatile|nuw|nsw|nnan|ninf|nsz|arcp|fast|exact|inbounds' + r'|align|addrspace|section|alias|module|asm|sideeffect|gc|dbg' r'|ccc|fastcc|coldcc|x86_stdcallcc|x86_fastcallcc|arm_apcscc' r'|arm_aapcscc|arm_aapcs_vfpcc' |