diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-06-06 19:47:08 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-06-06 19:47:08 +0000 |
commit | 95a9d937728ca9cf2bf44f86ff1184df318b3bd7 (patch) | |
tree | 77b5cf196dfbbd2ec36581c239d67d5632540710 /tools/llvm-prof | |
parent | a7542d5f870c5d98960d1676e23ac1d1d975d7e5 (diff) |
Round 2 of dead private variable removal.
LLVM is now -Wunused-private-field clean except for
- lib/MC/MCDisassembler/Disassembler.h. Not sure why it keeps all those unaccessible fields.
- gtest.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-prof')
-rw-r--r-- | tools/llvm-prof/llvm-prof.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-prof/llvm-prof.cpp b/tools/llvm-prof/llvm-prof.cpp index d9b6713364..81e9503abe 100644 --- a/tools/llvm-prof/llvm-prof.cpp +++ b/tools/llvm-prof/llvm-prof.cpp @@ -281,7 +281,7 @@ int main(int argc, char **argv) { // using the standard profile info provider pass, but for now this gives us // access to additional information not exposed via the ProfileInfo // interface. - ProfileInfoLoader PIL(argv[0], ProfileDataFile, *M); + ProfileInfoLoader PIL(argv[0], ProfileDataFile); // Run the printer pass. PassManager PassMgr; |