summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/RSProfiling.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-10 15:53:08 +0000
committerChris Lattner <sabre@nondot.org>2007-08-10 15:53:08 +0000
commit942c55bcfe04b6b578ca9b9e20f4c91624f731d8 (patch)
tree20b0366cf8db4dcbd51b2077335c7c7c0241735d /include/llvm/Transforms/RSProfiling.h
parent71996e73d8050d2b8805b14a48ab635155b11a12 (diff)
downloadllvm-942c55bcfe04b6b578ca9b9e20f4c91624f731d8.tar.gz
llvm-942c55bcfe04b6b578ca9b9e20f4c91624f731d8.tar.bz2
llvm-942c55bcfe04b6b578ca9b9e20f4c91624f731d8.tar.xz
add #ifndef guards
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/RSProfiling.h')
-rw-r--r--include/llvm/Transforms/RSProfiling.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Transforms/RSProfiling.h b/include/llvm/Transforms/RSProfiling.h
index b5cb3021ef..2fbab9d024 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