[llvm-commits] [llvm] r157901 - /llvm/trunk/include/llvm/Support/IntegersSubset.h

NAKAMURA Takumi geek4civic at gmail.com
Sun Jun 3 08:42:12 PDT 2012


Author: chapuni
Date: Sun Jun  3 10:42:12 2012
New Revision: 157901

URL: http://llvm.org/viewvc/llvm-project?rev=157901&view=rev
Log:
IntRange: Restore the copy constuctor explicitly to appase buildbot.

Modified:
    llvm/trunk/include/llvm/Support/IntegersSubset.h

Modified: llvm/trunk/include/llvm/Support/IntegersSubset.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/IntegersSubset.h?rev=157901&r1=157900&r2=157901&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/IntegersSubset.h (original)
+++ llvm/trunk/include/llvm/Support/IntegersSubset.h Sun Jun  3 10:42:12 2012
@@ -183,7 +183,9 @@
     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) {}
     





More information about the llvm-commits mailing list