From: Benjamin Kramer Date: Sun, 13 Jun 2010 12:52:38 +0000 (+0000) Subject: Let SmallVector take advantage of LiveRange's podness. X-Git-Tag: android-x86-6.0-r1~1003^2~5790 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=31135c06920017efa3998723fd1993fea3d1d6c6;p=android-x86%2Fexternal-llvm.git Let SmallVector take advantage of LiveRange's podness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105913 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index 637f52bd0bd..d644e4485d6 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -258,6 +258,8 @@ namespace llvm { LiveRange(); // DO NOT IMPLEMENT }; + template <> struct isPodLike { static const bool value = true; }; + raw_ostream& operator<<(raw_ostream& os, const LiveRange &LR);