diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-27 05:09:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-27 05:09:15 +0000 |
commit | 9b3c460a1ee1171f27dc24349317ca57fcabaa93 (patch) | |
tree | c4235d12ba13d2ef178bd076607b0e0f8ca0626f /llvm/utils/emacs | |
parent | 4f50ebda32b92537609f14c6e69f6b2f2423e545 (diff) | |
download | bcm5719-llvm-9b3c460a1ee1171f27dc24349317ca57fcabaa93.tar.gz bcm5719-llvm-9b3c460a1ee1171f27dc24349317ca57fcabaa93.zip |
Make sure to syntax hilight the 'unwind' keyword!
llvm-svn: 9524
Diffstat (limited to 'llvm/utils/emacs')
-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 477f821ded9..b26a4cab27d 100644 --- a/llvm/utils/emacs/llvm-mode.el +++ b/llvm/utils/emacs/llvm-mode.el @@ -33,7 +33,7 @@ ;; Special instructions '("phi\\|call\\|cast\\|to\\|shl\\|shr\\|vaarg\\|vanext" . font-lock-keyword-face) ;; Control instructions - '("ret\\|br\\|switch\\|invoke" . font-lock-keyword-face) + '("ret\\|br\\|switch\\|invoke\\|unwind" . font-lock-keyword-face) ;; Memory operators '("malloc\\|alloca\\|free\\|load\\|store\\|getelementptr" . font-lock-keyword-face) ) |