Skip to content

Commit

Permalink
Add opaque pointer type to LLVM IR lexer
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirV99 authored and birkenfeld committed Oct 31, 2022
1 parent b556d63 commit 8371114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygments/lexers/asm.py
Expand Up @@ -478,7 +478,7 @@ class LlvmLexer(RegexLexer):
# Types
(words(('void', 'half', 'bfloat', 'float', 'double', 'fp128',
'x86_fp80', 'ppc_fp128', 'label', 'metadata', 'x86_mmx',
'x86_amx', 'token')),
'x86_amx', 'token', 'ptr')),
Keyword.Type),

# Integer types
Expand Down

0 comments on commit 8371114

Please sign in to comment.