summaryrefslogtreecommitdiffstats
path: root/include/llvm/Instruction.def
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-10 15:27:31 +0000
committerChris Lattner <sabre@nondot.org>2002-09-10 15:27:31 +0000
commit226719e3eac481d96d67e58423358406a81c5ed9 (patch)
tree5d0f38f20c77fa7962e9658ed3b32c1c7fb743c1 /include/llvm/Instruction.def
parentb163f1c3e551cb3e5abd9bead0eae7a753502540 (diff)
downloadexternal_llvm-226719e3eac481d96d67e58423358406a81c5ed9.zip
external_llvm-226719e3eac481d96d67e58423358406a81c5ed9.tar.gz
external_llvm-226719e3eac481d96d67e58423358406a81c5ed9.tar.bz2
Eliminate the GenericBinaryInst class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instruction.def')
-rw-r--r--include/llvm/Instruction.def16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/llvm/Instruction.def b/include/llvm/Instruction.def
index afc12ed..465db50 100644
--- a/include/llvm/Instruction.def
+++ b/include/llvm/Instruction.def
@@ -81,16 +81,16 @@ HANDLE_TERM_INST ( 4, Invoke, InvokeInst)
// Standard binary operators...
FIRST_BINARY_INST( 6)
-HANDLE_BINARY_INST( 6, Add , GenericBinaryInst)
-HANDLE_BINARY_INST( 7, Sub , GenericBinaryInst)
-HANDLE_BINARY_INST( 8, Mul , GenericBinaryInst)
-HANDLE_BINARY_INST( 9, Div , GenericBinaryInst)
-HANDLE_BINARY_INST(10, Rem , GenericBinaryInst)
+HANDLE_BINARY_INST( 6, Add , BinaryOperator)
+HANDLE_BINARY_INST( 7, Sub , BinaryOperator)
+HANDLE_BINARY_INST( 8, Mul , BinaryOperator)
+HANDLE_BINARY_INST( 9, Div , BinaryOperator)
+HANDLE_BINARY_INST(10, Rem , BinaryOperator)
// Logical operators...
-HANDLE_BINARY_INST(11, And , GenericBinaryInst)
-HANDLE_BINARY_INST(12, Or , GenericBinaryInst)
-HANDLE_BINARY_INST(13, Xor , GenericBinaryInst)
+HANDLE_BINARY_INST(11, And , BinaryOperator)
+HANDLE_BINARY_INST(12, Or , BinaryOperator)
+HANDLE_BINARY_INST(13, Xor , BinaryOperator)
// Binary comparison operators...
HANDLE_BINARY_INST(14, SetEQ , SetCondInst)