mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Adjust to user changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
454928eda4
commit
519ccafc18
@ -20,10 +20,9 @@ namespace llvm {
|
||||
|
||||
class Constant : public User {
|
||||
protected:
|
||||
inline Constant(const Type *Ty, ValueTy vty = Value::SimpleConstantVal,
|
||||
const std::string& Name = "")
|
||||
: User(Ty, vty, Name) {}
|
||||
~Constant() {}
|
||||
Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps,
|
||||
const std::string& Name = "")
|
||||
: User(Ty, vty, Ops, NumOps, Name) {}
|
||||
|
||||
void destroyConstantImpl();
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user