From: Chris Lattner Date: Fri, 10 Aug 2007 15:53:08 +0000 (+0000) Subject: add #ifndef guards X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=942c55bcfe04b6b578ca9b9e20f4c91624f731d8;p=oota-llvm.git add #ifndef guards git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40990 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/RSProfiling.h b/include/llvm/Transforms/RSProfiling.h index b5cb3021efa..2fbab9d0241 100644 --- a/include/llvm/Transforms/RSProfiling.h +++ b/include/llvm/Transforms/RSProfiling.h @@ -12,6 +12,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_TRANSFORMS_RSPROFILING_H +#define LLVM_TRANSFORMS_RSPROFILING_H + namespace llvm { //===--------------------------------------------------------------------===// /// RSProfilers - The basic Random Sampling Profiler Interface Any profiler @@ -31,3 +34,5 @@ namespace llvm { virtual bool isProfiling(Value* v) = 0; }; } + +#endif