diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-11-28 06:45:57 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-11-28 06:45:57 +0000 |
commit | 3523f6e7a4aba0a2699b0293c95728dc2f949c9d (patch) | |
tree | f532bb8f6a489dd758c66c9ea9d121308314b79c /lib/Transforms/Instrumentation | |
parent | 1e4ed935995b90ba58353decb8c8c5743c33d00a (diff) | |
download | external_llvm-3523f6e7a4aba0a2699b0293c95728dc2f949c9d.zip external_llvm-3523f6e7a4aba0a2699b0293c95728dc2f949c9d.tar.gz external_llvm-3523f6e7a4aba0a2699b0293c95728dc2f949c9d.tar.bz2 |
Fix VC++ warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24496 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation')
-rw-r--r-- | lib/Transforms/Instrumentation/RSProfiling.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Instrumentation/RSProfiling.cpp b/lib/Transforms/Instrumentation/RSProfiling.cpp index 939266e..8a3f678 100644 --- a/lib/Transforms/Instrumentation/RSProfiling.cpp +++ b/lib/Transforms/Instrumentation/RSProfiling.cpp @@ -445,6 +445,7 @@ Value* ProfilerRS::Translate(Value* v) { return v; } assert(0 && "Value not handled"); + return 0; } void ProfilerRS::Duplicate(Function& F, RSProfilers& LI) |