diff options
author | Jakub Staszak <jstaszak@apple.com> | 2011-07-25 22:27:42 +0000 |
---|---|---|
committer | Jakub Staszak <jstaszak@apple.com> | 2011-07-25 22:27:42 +0000 |
commit | 15b35677d0d49078658e87451dc5321bb95d4034 (patch) | |
tree | 375a0a43a1313ec4fbf22f9505e2fdc48e2b295c /include/llvm/Support/BranchProbability.h | |
parent | ed4b4272ba2c2ff68f839738ba8147c3606d8885 (diff) | |
download | external_llvm-15b35677d0d49078658e87451dc5321bb95d4034.tar.gz external_llvm-15b35677d0d49078658e87451dc5321bb95d4034.tar.bz2 external_llvm-15b35677d0d49078658e87451dc5321bb95d4034.zip |
BranchProbability::print returns void now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135994 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/BranchProbability.h')
-rw-r--r-- | include/llvm/Support/BranchProbability.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/BranchProbability.h b/include/llvm/Support/BranchProbability.h index 80da81b559..05c24d4fcf 100644 --- a/include/llvm/Support/BranchProbability.h +++ b/include/llvm/Support/BranchProbability.h @@ -40,7 +40,7 @@ public: return BranchProbability(D - N, D); } - raw_ostream &print(raw_ostream &OS) const; + void print(raw_ostream &OS) const; void dump() const; }; |