projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71996e7
)
add #ifndef guards
author
Chris Lattner
<sabre@nondot.org>
Fri, 10 Aug 2007 15:53:08 +0000
(15:53 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 10 Aug 2007 15:53:08 +0000
(15:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40990
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Transforms/RSProfiling.h
patch
|
blob
|
history
diff --git
a/include/llvm/Transforms/RSProfiling.h
b/include/llvm/Transforms/RSProfiling.h
index b5cb3021efa6aef1ae61201fce6504e4997bf269..2fbab9d0241664ec37b2ffd064e67c83479b0791 100644
(file)
--- 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