summaryrefslogtreecommitdiff
path: root/include/llvm/Support/BlockFrequency.h
diff options
context:
space:
mode:
authorJakub Staszak <jstaszak@apple.com>2011-07-27 15:51:51 +0000
committerJakub Staszak <jstaszak@apple.com>2011-07-27 15:51:51 +0000
commit636a02b57c3ade2eb528bda31f05556f42aa7d48 (patch)
tree9e7b9027ac04adebd1f5c7f4f19c486ed96d8aa0 /include/llvm/Support/BlockFrequency.h
parent9d9f76551977e57dc765f691be6411bc3edd0361 (diff)
downloadllvm-636a02b57c3ade2eb528bda31f05556f42aa7d48.tar.gz
llvm-636a02b57c3ade2eb528bda31f05556f42aa7d48.tar.bz2
llvm-636a02b57c3ade2eb528bda31f05556f42aa7d48.tar.xz
Move static methods to the anonymous namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/BlockFrequency.h')
-rw-r--r--include/llvm/Support/BlockFrequency.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Support/BlockFrequency.h b/include/llvm/Support/BlockFrequency.h
index b133c961f6..36aca807f7 100644
--- a/include/llvm/Support/BlockFrequency.h
+++ b/include/llvm/Support/BlockFrequency.h
@@ -24,9 +24,6 @@ class BlockFrequency {
uint64_t Frequency;
- static void mult96bit(uint64_t freq, uint32_t N, uint64_t W[2]);
- static uint64_t div96bit(uint64_t W[2], uint32_t D);
-
public:
BlockFrequency(uint64_t Freq = 0) : Frequency(Freq) { }