diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-09-09 18:03:46 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-09-09 18:03:46 +0000 |
commit | 3cb19a156ded1e2fcc6f259c94bd7272ed2a1bef (patch) | |
tree | 2bcd11a6375e35627fc07cd492f9067e4527a92f /llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | |
parent | deaf572ca89f2764243f0b60aee00d156f03dd06 (diff) | |
download | bcm5719-llvm-3cb19a156ded1e2fcc6f259c94bd7272ed2a1bef.tar.gz bcm5719-llvm-3cb19a156ded1e2fcc6f259c94bd7272ed2a1bef.zip |
Fix build, add missing simicolon.
llvm-svn: 81362
Diffstat (limited to 'llvm/lib/Analysis/ProfileInfoLoaderPass.cpp')
-rw-r--r-- | llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp index 9b5760f2cdf..6b33ef8f32c 100644 --- a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp @@ -168,7 +168,7 @@ unsigned LoaderPass::readEdge(ProfileInfo::Edge e, std::vector<unsigned> ECs, // This happens only when loading edges for optimal edge profiling. SpanningTree.insert(e); } - return ei++ + return ei++; } else { return ei; } |