Minor spiller tweak to unfavor reload into load/store instructions.
[oota-llvm.git] / include / llvm / Constant.h
index c3373f2513ca043376b5d52db02ce0620d980aee..d85771a09a47018ee1bba007e0ac0d2cb8ef67dd 100644 (file)
@@ -39,8 +39,8 @@ class Constant : public User {
   void operator=(const Constant &);     // Do not implement
   Constant(const Constant &);           // Do not implement
 protected:
-  Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps)
-    : User(Ty, vty, Ops, NumOps) {}
+  Constant(const Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
+    : User(ty, vty, Ops, NumOps) {}
 
   void destroyConstantImpl();
 public: