diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-07 07:22:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-07 07:22:20 +0000 |
commit | febe5f1b3c43c217e4c32155cda9bcc9e1e50e11 (patch) | |
tree | 662cfc2882aac9d31e178edb5dd7eac9d4bb86a4 /lib/Transforms/Instrumentation/RSProfiling.cpp | |
parent | 35057c2625efb902048c215cf52f960f60944318 (diff) |
relax some types
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32982 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/RSProfiling.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/RSProfiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/RSProfiling.cpp b/lib/Transforms/Instrumentation/RSProfiling.cpp index 1553141cec..e70a2cbbe0 100644 --- a/lib/Transforms/Instrumentation/RSProfiling.cpp +++ b/lib/Transforms/Instrumentation/RSProfiling.cpp @@ -127,7 +127,7 @@ namespace { //deciding when to sample. class CycleCounter : public Chooser { uint64_t rm; - Function* F; + Constant *F; public: CycleCounter(Module& m, uint64_t resetmask); virtual ~CycleCounter(); |