aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Use.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-05-13 22:51:52 +0000
committerGabor Greif <ggreif@gmail.com>2008-05-13 22:51:52 +0000
commit94fb68ba217975d2d99ae86d15993402158ac655 (patch)
tree552de423a4b79ff2cf57b7c68f5e2db81fb562d2 /include/llvm/Use.h
parente3fc3858a2e9d6483a68a6696d07f29ccc799cce (diff)
downloadexternal_llvm-94fb68ba217975d2d99ae86d15993402158ac655.zip
external_llvm-94fb68ba217975d2d99ae86d15993402158ac655.tar.gz
external_llvm-94fb68ba217975d2d99ae86d15993402158ac655.tar.bz2
Merge of r51073-51074 from use-diet branch.
Do not rely on std::swap<Use>, provide a (faster) member function instead. This change is primarily necessitated by MSVC++'s incompatibility with declaring std::swap<Use> to be a friend of Use. Also contains some minor tweaks to Use inline functions, to undo pointless changes that sneaked in with the last merge. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Use.h')
-rw-r--r--include/llvm/Use.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h
index b4d4bda..79bcdd1 100644
--- a/include/llvm/Use.h
+++ b/include/llvm/Use.h
@@ -67,18 +67,20 @@ inline T *transferTag(const T *From, const T *To) {
//
class Use {
public:
+ /// init - specify Value and User
+ /// @deprecated in 2.4, will be removed soon
inline void init(Value *V, User *U);
+ /// swap - provide a fast substitute to std::swap<Use>
+ /// that also works with less standard-compliant compilers
+ void swap(Use &RHS);
private:
- /// Allow std::swap some intimacy
- template <typename U> friend void std::swap(U&, U&);
+ /// Copy ctor - do not implement
+ Use(const Use &U);
- /// Copy ctor - Only for std::swap
- Use(const Use &U) { init(U.get(), 0); }
-
- /// Destructor - Only for zap() and std::swap
+ /// Destructor - Only for zap()
inline ~Use() {
- if (get()) removeFromList();
+ if (Val) removeFromList();
}
/// Default ctor - This leaves the Use completely uninitialized. The only thing
@@ -107,7 +109,7 @@ public:
return RHS;
}
const Use &operator=(const Use &RHS) {
- set(RHS.get());
+ set(RHS.Val);
return *this;
}