Fix stupid typo

llvm-svn: 168
This commit is contained in:
Chris Lattner 2001-07-09 16:54:29 +00:00
parent a5f3fed2ac
commit 9373328e93

View File

@ -44,7 +44,7 @@ public:
typedef vector<Use>::const_iterator op_const_iterator;
inline op_iterator op_begin() { return Operands.begin(); }
inline op_const_iterator op_begin() const { return Operands.end(); }
inline op_const_iterator op_begin() const { return Operands.begin(); }
inline op_iterator op_end() { return Operands.end(); }
inline op_const_iterator op_end() const { return Operands.end(); }