Let SmallVector take advantage of LiveRange's podness.

llvm-svn: 105913
This commit is contained in:
Benjamin Kramer 2010-06-13 12:52:38 +00:00
parent 955d383e5b
commit 5d5812efa8

View File

@ -258,6 +258,8 @@ namespace llvm {
LiveRange(); // DO NOT IMPLEMENT
};
template <> struct isPodLike<LiveRange> { static const bool value = true; };
raw_ostream& operator<<(raw_ostream& os, const LiveRange &LR);