diff options
author | Vedant Kumar <vsk@apple.com> | 2016-04-22 06:51:37 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-04-22 06:51:37 +0000 |
commit | 6013f45f920f8b208e945007697a5601f6f956fc (patch) | |
tree | fe324d8bb253f369bf9294cbc5c0b13e6ba99570 /llvm/lib/Transforms/Instrumentation | |
parent | ae720dbbb61f8dcfe8bf44ec01160183c07cf40e (diff) | |
download | bcm5719-llvm-6013f45f920f8b208e945007697a5601f6f956fc.tar.gz bcm5719-llvm-6013f45f920f8b208e945007697a5601f6f956fc.zip |
Revert "Initial implementation of optimization bisect support."
This reverts commit r267022, due to an ASan failure:
http://lab.llvm.org:8080/green/job/clang-stage2-cmake-RgSan_check/1549
llvm-svn: 267115
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp index ebfb954d384..bf2933e8921 100644 --- a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp +++ b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp @@ -778,9 +778,6 @@ static void createIRLevelProfileFlagVariable(Module &M) { } bool PGOInstrumentationGen::runOnModule(Module &M) { - if (skipModule(M)) - return false; - createIRLevelProfileFlagVariable(M); for (auto &F : M) { if (F.isDeclaration()) @@ -804,9 +801,6 @@ static void setPGOCountOnFunc(PGOUseFunc &Func, } bool PGOInstrumentationUse::runOnModule(Module &M) { - if (skipModule(M)) - return false; - DEBUG(dbgs() << "Read in profile counters: "); auto &Ctx = M.getContext(); // Read the counter array from file. |