[llvm-commits] CVS: llvm/include/llvm/iOperators.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Sep 10 10:35:01 PDT 2002
Changes in directory llvm/include/llvm:
iOperators.h updated: 1.12 -> 1.13
---
Log message:
* Eliminate GenericBinaryInst class
* Allow specifying where to insert a newly created SetCondInst
---
Diffs of the changes:
Index: llvm/include/llvm/iOperators.h
diff -u llvm/include/llvm/iOperators.h:1.12 llvm/include/llvm/iOperators.h:1.13
--- llvm/include/llvm/iOperators.h:1.12 Sun Sep 1 14:46:36 2002
+++ llvm/include/llvm/iOperators.h Tue Sep 10 10:34:41 2002
@@ -1,34 +1,22 @@
-//===-- llvm/iBinary.h - Binary Operator node definitions --------*- C++ -*--=//
+//===-- llvm/iOperators.h - Binary Operator node definitions ----*- C++ -*-===//
//
-// This file contains the declarations of all of the Binary Operator classes.
+// This file contains the declarations of the Binary Operator classes.
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_IBINARY_H
-#define LLVM_IBINARY_H
+#ifndef LLVM_IOPERATORS_H
+#define LLVM_IOPERATORS_H
#include "llvm/InstrTypes.h"
-//===----------------------------------------------------------------------===//
-// Classes to represent Binary operators
-//===----------------------------------------------------------------------===//
-//
-// All of these classes are subclasses of the BinaryOperator class...
-//
-
-class GenericBinaryInst : public BinaryOperator {
-public:
- GenericBinaryInst(BinaryOps Opcode, Value *S1, Value *S2,
- const std::string &Name = "")
- : BinaryOperator(Opcode, S1, S2, Name) {
- }
-};
-
+/// SetCondInst class - Represent a setCC operator, where CC is eq, ne, lt, gt,
+/// le, or ge.
+///
class SetCondInst : public BinaryOperator {
BinaryOps OpType;
public:
SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
- const std::string &Name = "");
+ const std::string &Name = "", Instruction *InsertBefore = 0);
/// getInverseCondition - Return the inverse of the current condition opcode.
/// For example seteq -> setne, setgt -> setle, setlt -> setge, etc...
More information about the llvm-commits
mailing list