summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Vuksanovic <vladevuksan99@gmail.com>2022-11-07 20:47:30 +0100
committerVladimir Vuksanovic <vladevuksan99@gmail.com>2022-11-07 20:47:30 +0100
commit73e7ba9b9e1e31e071a00257b0cadfcf075d9fc0 (patch)
tree1cee08ff3b98444fcf966dc4baed9d0f4699bd62
parent195edaa0ec38c6041037247a3115c7313e9f396f (diff)
downloadgtksourceview-73e7ba9b9e1e31e071a00257b0cadfcf075d9fc0.tar.gz
llvm.lang: Add missing 'sge' keyword
This adds the missing 'sge' (signed greater or equal) argument for the icmp instruction. https://llvm.org/docs/LangRef.html#icmp-instruction
-rw-r--r--data/language-specs/llvm.lang1
1 files changed, 1 insertions, 0 deletions
diff --git a/data/language-specs/llvm.lang b/data/language-specs/llvm.lang
index 4de7d403..f5dad2ec 100644
--- a/data/language-specs/llvm.lang
+++ b/data/language-specs/llvm.lang
@@ -146,6 +146,7 @@
<keyword>ult</keyword>
<keyword>ule</keyword>
<keyword>sgt</keyword>
+ <keyword>sge</keyword>
<keyword>slt</keyword>
<keyword>sle</keyword>
<!-- fcmp -->