diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-12 05:54:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-12 05:54:48 +0000 |
commit | 98124c81fa2a901a0fff799aac76faed1f628e07 (patch) | |
tree | 29d6527e7443c4ffd8ddbd9cf9b2570ccc563685 /utils | |
parent | 230c1a7222aa0c975120cf03a612117fe471fb78 (diff) | |
download | external_llvm-98124c81fa2a901a0fff799aac76faed1f628e07.zip external_llvm-98124c81fa2a901a0fff799aac76faed1f628e07.tar.gz external_llvm-98124c81fa2a901a0fff799aac76faed1f628e07.tar.bz2 |
Teach emacs about the select instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12326 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/emacs/llvm-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/emacs/llvm-mode.el b/utils/emacs/llvm-mode.el index b26a4ca..37f5d88 100644 --- a/utils/emacs/llvm-mode.el +++ b/utils/emacs/llvm-mode.el @@ -31,7 +31,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\\|to\\|shl\\|shr\\|vaarg\\|vanext" . font-lock-keyword-face) + '("phi\\|call\\|cast\\|select\\|to\\|shl\\|shr\\|vaarg\\|vanext" . font-lock-keyword-face) ;; Control instructions '("ret\\|br\\|switch\\|invoke\\|unwind" . font-lock-keyword-face) ;; Memory operators |