aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-10-06 20:33:02 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-10-06 20:33:02 +0000
commit2b1add3842fbd079c9e53f0c9499b325b412ccad (patch)
treeff5712a3d5bcefc82c8f457cb446276712c80626
parentac2fc27b8d1f547d7acaa78e4fa485e70644c3dc (diff)
downloadexternal_llvm-2b1add3842fbd079c9e53f0c9499b325b412ccad.zip
external_llvm-2b1add3842fbd079c9e53f0c9499b325b412ccad.tar.gz
external_llvm-2b1add3842fbd079c9e53f0c9499b325b412ccad.tar.bz2
Cosmetic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57200 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Instruction.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Instruction.def b/include/llvm/Instruction.def
index dcc22e5..66bf2ce 100644
--- a/include/llvm/Instruction.def
+++ b/include/llvm/Instruction.def
@@ -117,7 +117,7 @@ HANDLE_BINARY_INST(15, FRem , BinaryOperator)
// Logical operators (integer operands)
HANDLE_BINARY_INST(16, Shl , BinaryOperator) // Shift left (logical)
HANDLE_BINARY_INST(17, LShr , BinaryOperator) // Shift right (logical)
-HANDLE_BINARY_INST(18, AShr , BinaryOperator) // shift right (arithmetic)
+HANDLE_BINARY_INST(18, AShr , BinaryOperator) // Shift right (arithmetic)
HANDLE_BINARY_INST(19, And , BinaryOperator)
HANDLE_BINARY_INST(20, Or , BinaryOperator)
HANDLE_BINARY_INST(21, Xor , BinaryOperator)