[llvm-commits] [llvm] r75664 - in /llvm/trunk/include/llvm: OperandTraits.h User.h
Chris Lattner
sabre at nondot.org
Tue Jul 14 11:58:38 PDT 2009
Author: lattner
Date: Tue Jul 14 13:58:35 2009
New Revision: 75664
URL: http://llvm.org/viewvc/llvm-project?rev=75664&view=rev
Log:
Remove some dead functions, patch by Ryan Flynn!
Modified:
llvm/trunk/include/llvm/OperandTraits.h
llvm/trunk/include/llvm/User.h
Modified: llvm/trunk/include/llvm/OperandTraits.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/OperandTraits.h?rev=75664&r1=75663&r2=75664&view=diff
==============================================================================
--- llvm/trunk/include/llvm/OperandTraits.h (original)
+++ llvm/trunk/include/llvm/OperandTraits.h Tue Jul 14 13:58:35 2009
@@ -48,7 +48,6 @@
overlay(); // DO NOT IMPLEMENT
};
};
- static inline void *allocate(unsigned); // FIXME
};
//===----------------------------------------------------------------------===//
@@ -81,7 +80,6 @@
static unsigned operands(const User *U) {
return U->getNumOperands();
}
- static inline void *allocate(unsigned); // FIXME
};
//===----------------------------------------------------------------------===//
@@ -109,7 +107,6 @@
static unsigned operands(const User *U) {
return U->getNumOperands();
}
- static inline void *allocate(unsigned); // FIXME
};
/// Macro for generating in-class operand accessor declarations.
Modified: llvm/trunk/include/llvm/User.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/User.h?rev=75664&r1=75663&r2=75664&view=diff
==============================================================================
--- llvm/trunk/include/llvm/User.h (original)
+++ llvm/trunk/include/llvm/User.h Tue Jul 14 13:58:35 2009
@@ -41,7 +41,6 @@
struct Layout {
typedef U overlay;
};
- static inline void *allocate(unsigned);
};
class User : public Value {
More information about the llvm-commits
mailing list