From 5d5812efa81819990b622fd450844d6971323978 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sun, 13 Jun 2010 12:52:38 +0000 Subject: [PATCH] Let SmallVector take advantage of LiveRange's podness. llvm-svn: 105913 --- include/llvm/CodeGen/LiveInterval.h | 2 ++ 1 file changed, 2 insertions(+) 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);