merge of use-diet branch to trunk
[oota-llvm.git] / include / llvm / Value.h
index 2bcac08a952e000d832f8b359d9ad65c9150c2cf..2d6351d5304e0ad4aa24b844e5e9b48e866d8bf6 100644 (file)
@@ -232,10 +232,9 @@ inline std::ostream &operator<<(std::ostream &OS, const Value &V) {
   return OS;
 }
 
-void Use::init(Value *v, User *user) {
-  Val = v;
-  U = user;
-  if (Val) Val->addUse(*this);
+void Use::init(Value *V, User *user) {
+  Val = V;
+  if (V) V->addUse(*this);
 }
 
 void Use::set(Value *V) {