diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-08 02:41:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-08 02:41:11 +0000 |
commit | 995ecdd8e9031f96fdcda519efc1118d1271ecec (patch) | |
tree | 4cde827effa8659757acf8e81823bd733f7fa0fe /llvm/utils/emacs/llvm-mode.el | |
parent | 0badea6a94f621220ea534e4df2c6e19afe5b7a0 (diff) | |
download | bcm5719-llvm-995ecdd8e9031f96fdcda519efc1118d1271ecec.tar.gz bcm5719-llvm-995ecdd8e9031f96fdcda519efc1118d1271ecec.zip |
Add support for new va_arg instruction
llvm-svn: 6026
Diffstat (limited to 'llvm/utils/emacs/llvm-mode.el')
-rw-r--r-- | llvm/utils/emacs/llvm-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/emacs/llvm-mode.el b/llvm/utils/emacs/llvm-mode.el index f72fbcb3f94..578257ab504 100644 --- a/llvm/utils/emacs/llvm-mode.el +++ b/llvm/utils/emacs/llvm-mode.el @@ -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 |