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 | cc4715e06ea690a6378163267797e04ba52ec414 (patch) | |
tree | ebf6f343305b3b7b0ac0855d8633c7c6801a4d6f /llvm/lib/Transforms/Instrumentation/RSProfiling.cpp | |
parent | 9641ab26ece77a2995bd4c3e8540556404dba895 (diff) | |
download | bcm5719-llvm-cc4715e06ea690a6378163267797e04ba52ec414.tar.gz bcm5719-llvm-cc4715e06ea690a6378163267797e04ba52ec414.zip |
relax some types
llvm-svn: 32982
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/RSProfiling.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/RSProfiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/RSProfiling.cpp b/llvm/lib/Transforms/Instrumentation/RSProfiling.cpp index 1553141cec2..e70a2cbbe01 100644 --- a/llvm/lib/Transforms/Instrumentation/RSProfiling.cpp +++ b/llvm/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(); |