forked from OSchip/llvm-project
[Transforms] Use default member initialization in AAIsDeadCallSiteReturned (NFC)
This commit is contained in:
parent
31d72f0e45
commit
cb13ebbf46
|
@ -3661,7 +3661,7 @@ struct AAIsDeadCallSiteArgument : public AAIsDeadValueImpl {
|
|||
|
||||
struct AAIsDeadCallSiteReturned : public AAIsDeadFloating {
|
||||
AAIsDeadCallSiteReturned(const IRPosition &IRP, Attributor &A)
|
||||
: AAIsDeadFloating(IRP, A), IsAssumedSideEffectFree(true) {}
|
||||
: AAIsDeadFloating(IRP, A) {}
|
||||
|
||||
/// See AAIsDead::isAssumedDead().
|
||||
bool isAssumedDead() const override {
|
||||
|
@ -3707,7 +3707,7 @@ struct AAIsDeadCallSiteReturned : public AAIsDeadFloating {
|
|||
}
|
||||
|
||||
private:
|
||||
bool IsAssumedSideEffectFree;
|
||||
bool IsAssumedSideEffectFree = true;
|
||||
};
|
||||
|
||||
struct AAIsDeadReturned : public AAIsDeadValueImpl {
|
||||
|
|
Loading…
Reference in New Issue