diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-03 15:42:12 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-03 15:42:12 +0000 |
| commit | 2cf23dc27257c54d3358d1966f7a69053191a334 (patch) | |
| tree | f07bab7143b3477bf6c01edf7ea0f0a61271a82a /llvm | |
| parent | 4efdcced7a37bbc12ea06240d0d8ae282bf1871f (diff) | |
| download | bcm5719-llvm-2cf23dc27257c54d3358d1966f7a69053191a334.tar.gz bcm5719-llvm-2cf23dc27257c54d3358d1966f7a69053191a334.zip | |
IntRange: Restore the copy constuctor explicitly to appase buildbot.
llvm-svn: 157901
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Support/IntegersSubset.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/IntegersSubset.h b/llvm/include/llvm/Support/IntegersSubset.h index 998cc73c84c..add0c902a9e 100644 --- a/llvm/include/llvm/Support/IntegersSubset.h +++ b/llvm/include/llvm/Support/IntegersSubset.h @@ -183,7 +183,9 @@ public: typedef std::pair<self, self> SubRes; IntRange() : IsEmpty(true) {} - + IntRange(const self &RHS) : + Low(RHS.Low), High(RHS.High), + IsEmpty(RHS.IsEmpty), IsSingleNumber(RHS.IsSingleNumber) {} IntRange(const IntType &C) : Low(C), High(C), IsEmpty(false), IsSingleNumber(true) {} |

