summaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-11-28 06:45:57 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-11-28 06:45:57 +0000
commit3523f6e7a4aba0a2699b0293c95728dc2f949c9d (patch)
treef532bb8f6a489dd758c66c9ea9d121308314b79c /lib/Transforms/Instrumentation
parent1e4ed935995b90ba58353decb8c8c5743c33d00a (diff)
downloadllvm-3523f6e7a4aba0a2699b0293c95728dc2f949c9d.tar.gz
llvm-3523f6e7a4aba0a2699b0293c95728dc2f949c9d.tar.bz2
llvm-3523f6e7a4aba0a2699b0293c95728dc2f949c9d.tar.xz
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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Instrumentation/RSProfiling.cpp b/lib/Transforms/Instrumentation/RSProfiling.cpp
index 939266e214..8a3f678b9a 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)