From 13776d3fc80e3d5936ecba3a3dc0b20299cf0b6e Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 3 Jun 2012 15:42:12 +0000 Subject: [PATCH] IntRange: Restore the copy constuctor explicitly to appase buildbot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157901 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/IntegersSubset.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/llvm/Support/IntegersSubset.h b/include/llvm/Support/IntegersSubset.h index 998cc73c84c..add0c902a9e 100644 --- a/include/llvm/Support/IntegersSubset.h +++ b/include/llvm/Support/IntegersSubset.h @@ -183,7 +183,9 @@ public: typedef std::pair 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) {}