From: Chris Lattner Date: Sun, 4 Jan 2009 01:28:00 +0000 (+0000) Subject: add #include guards, thanks Dan. X-Git-Tag: android-x86-6.0-r1~1047^2~16568 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=704cb8b1f8ad502730ce1d6d9e37f3287ca28676;p=android-x86%2Fexternal-llvm.git add #include guards, thanks Dan. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61619 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/PredIteratorCache.h b/include/llvm/Support/PredIteratorCache.h index 532d65e6d44..2de2a02461d 100644 --- a/include/llvm/Support/PredIteratorCache.h +++ b/include/llvm/Support/PredIteratorCache.h @@ -16,6 +16,9 @@ #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" +#ifndef LLVM_SUPPORT_PREDITERATORCACHE_H +#define LLVM_SUPPORT_PREDITERATORCACHE_H + namespace llvm { /// PredIteratorCache - This class is an extremely trivial cache for @@ -55,3 +58,5 @@ namespace llvm { }; } // end namespace llvm +#endif +