diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2016-02-17 18:47:29 +0000 | 
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2016-02-17 18:47:29 +0000 | 
| commit | e6154ffbe06f72d8d393a60e7089f877090f848f (patch) | |
| tree | 8410696cddc426d19a7d21a8d2922a157a70cc83 /llvm/include | |
| parent | 7e5937b775410a81b5a57c45fb087ef99e971308 (diff) | |
| download | bcm5719-llvm-e6154ffbe06f72d8d393a60e7089f877090f848f.tar.gz bcm5719-llvm-e6154ffbe06f72d8d393a60e7089f877090f848f.zip  | |
Revert r261070, it caused PR26652 / PR26653.
llvm-svn: 261127
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index c6f7a9eee26..536fc656e8e 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h @@ -328,7 +328,6 @@ private:    bool NoInfs : 1;    bool NoSignedZeros : 1;    bool AllowReciprocal : 1; -  bool VectorReduction : 1;  public:    /// Default constructor turns off all optimization flags. @@ -341,7 +340,6 @@ public:      NoInfs = false;      NoSignedZeros = false;      AllowReciprocal = false; -    VectorReduction = false;    }    // These are mutators for each flag. @@ -353,7 +351,6 @@ public:    void setNoInfs(bool b) { NoInfs = b; }    void setNoSignedZeros(bool b) { NoSignedZeros = b; }    void setAllowReciprocal(bool b) { AllowReciprocal = b; } -  void setVectorReduction(bool b) { VectorReduction = b; }    // These are accessors for each flag.    bool hasNoUnsignedWrap() const { return NoUnsignedWrap; } @@ -364,7 +361,6 @@ public:    bool hasNoInfs() const { return NoInfs; }    bool hasNoSignedZeros() const { return NoSignedZeros; }    bool hasAllowReciprocal() const { return AllowReciprocal; } -  bool hasVectorReduction() const { return VectorReduction; }    /// Return a raw encoding of the flags.    /// This function should only be used to add data to the NodeID value.  | 

