summaryrefslogtreecommitdiff
path: root/tools/bugpoint/BugDriver.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-23 23:49:59 +0000
committerChris Lattner <sabre@nondot.org>2002-12-23 23:49:59 +0000
commit218e26ef3583cc3270f5f2a2b9cb1025e5b05ebe (patch)
treec580bd5dc8fa21a0244578e71e427ebd0c410825 /tools/bugpoint/BugDriver.cpp
parent18fda6d7c343afd5970bd26cfc4a80fa4503cc84 (diff)
downloadllvm-218e26ef3583cc3270f5f2a2b9cb1025e5b05ebe.tar.gz
llvm-218e26ef3583cc3270f5f2a2b9cb1025e5b05ebe.tar.bz2
llvm-218e26ef3583cc3270f5f2a2b9cb1025e5b05ebe.tar.xz
Implement the start of the miscompilation detection stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5119 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/BugDriver.cpp')
-rw-r--r--tools/bugpoint/BugDriver.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp
index 0343f6381d..c204ab45b2 100644
--- a/tools/bugpoint/BugDriver.cpp
+++ b/tools/bugpoint/BugDriver.cpp
@@ -82,19 +82,3 @@ bool BugDriver::run() {
else
return debugMiscompilation();
}
-
-
-/// debugMiscompilation - This method is used when the passes selected are not
-/// crashing, but the generated output is semantically different from the
-/// input.
-///
-bool BugDriver::debugMiscompilation() {
- std::cout << "*** Debugging miscompilation!\n";
- std::cerr << "Sorry, bugpoint cannot debug a miscompilation yet!\n";
-
- // If no reference output was specified, run the program without optimizations
- // to get a reference output.
- //
-
- return true;
-}