From: Jordan Rose Date: Thu, 28 Feb 2013 01:53:03 +0000 (+0000) Subject: [analyzer] Mark the root SVal class as isPodLike. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4879e49c8ed6268a2de1d1c8b2a6b480d85a8b06;p=platform%2Fupstream%2Fllvm.git [analyzer] Mark the root SVal class as isPodLike. Pure optimization, no functionality change. Probably does not make much of a difference, but it's free. llvm-svn: 176229 --- diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h index 03e8444..8182f2e 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h @@ -555,6 +555,11 @@ static inline raw_ostream &operator<<(raw_ostream &os, return os; } +template struct isPodLike; +template <> struct isPodLike { + static const bool value = true; +}; + } // end llvm namespace #endif