Add support for new va_arg instruction

llvm-svn: 6026
This commit is contained in:
Chris Lattner 2003-05-08 02:41:11 +00:00
parent 0badea6a94
commit 995ecdd8e9
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
;; Arithmetic and Logical Operators
'("add\\|sub\\|mul\\|div\\|rem\\|and\\|or\\|xor\\|set\\(ne\\|eq\\|lt\\|gt\\|le\\|ge\\)" . font-lock-keyword-face)
;; Special instructions
'("phi\\|call\\|cast\\|shl\\|shr" . font-lock-keyword-face)
'("phi\\|call\\|cast\\|shl\\|shr\\|va_arg" . font-lock-keyword-face)
;; Control instructions
'("ret\\|br\\|switch\\|invoke" . font-lock-keyword-face)
;; Memory operators

View File

@ -20,7 +20,7 @@ syn keyword llvmStatement add sub mul div rem
syn keyword llvmStatement and or xor
syn keyword llvmStatement setne seteq setlt setgt setle setge
syn keyword llvmStatement phi call cast shl shr
syn keyword llvmStatement phi call cast shl shr va_arg
syn keyword llvmStatement ret br switch invoke
syn keyword llvmStatement malloc alloca free load store getelementptr