[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h CodeGeneratorBug.cpp CrashDebugger.cpp ExecutionDriver.cpp ExtractFunction.cpp ListReducer.h Miscompilation.cpp OptimizerDriver.cpp TestPasses.cpp bugpoint.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Oct 20 12:58:02 PDT 2003


Changes in directory llvm/tools/bugpoint:

BugDriver.cpp updated: 1.19 -> 1.20
BugDriver.h updated: 1.18 -> 1.19
CodeGeneratorBug.cpp updated: 1.27 -> 1.28
CrashDebugger.cpp updated: 1.20 -> 1.21
ExecutionDriver.cpp updated: 1.30 -> 1.31
ExtractFunction.cpp updated: 1.15 -> 1.16
ListReducer.h updated: 1.6 -> 1.7
Miscompilation.cpp updated: 1.22 -> 1.23
OptimizerDriver.cpp updated: 1.14 -> 1.15
TestPasses.cpp updated: 1.4 -> 1.5
bugpoint.cpp updated: 1.9 -> 1.10

---
Log message:

fix file headers


---
Diffs of the changes:  (+1 -12)

Index: llvm/tools/bugpoint/BugDriver.cpp
diff -u llvm/tools/bugpoint/BugDriver.cpp:1.19 llvm/tools/bugpoint/BugDriver.cpp:1.20
--- llvm/tools/bugpoint/BugDriver.cpp:1.19	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/BugDriver.cpp	Mon Oct 20 12:57:12 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This class contains all of the shared state and information that is used by
 // the BugPoint tool to track down errors in optimizations.  This class is the


Index: llvm/tools/bugpoint/BugDriver.h
diff -u llvm/tools/bugpoint/BugDriver.h:1.18 llvm/tools/bugpoint/BugDriver.h:1.19
--- llvm/tools/bugpoint/BugDriver.h:1.18	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/BugDriver.h	Mon Oct 20 12:57:12 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This class contains all of the shared state and information that is used by
 // the BugPoint tool to track down errors in optimizations.  This class is the


Index: llvm/tools/bugpoint/CodeGeneratorBug.cpp
diff -u llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.27 llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.28
--- llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.27	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/CodeGeneratorBug.cpp	Mon Oct 20 12:57:12 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file implements program code generation debugging support.
 //


Index: llvm/tools/bugpoint/CrashDebugger.cpp
diff -u llvm/tools/bugpoint/CrashDebugger.cpp:1.20 llvm/tools/bugpoint/CrashDebugger.cpp:1.21
--- llvm/tools/bugpoint/CrashDebugger.cpp:1.20	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/CrashDebugger.cpp	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file defines the bugpoint internals that narrow down compilation crashes
 //


Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.30 llvm/tools/bugpoint/ExecutionDriver.cpp:1.31
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.30	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/ExecutionDriver.cpp	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file contains code used to execute the program utilizing one of the
 // various ways of running LLVM bytecode.


Index: llvm/tools/bugpoint/ExtractFunction.cpp
diff -u llvm/tools/bugpoint/ExtractFunction.cpp:1.15 llvm/tools/bugpoint/ExtractFunction.cpp:1.16
--- llvm/tools/bugpoint/ExtractFunction.cpp:1.15	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/ExtractFunction.cpp	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file implements a method that extracts a function from program, cleans
 // it up, and returns it as a new module.


Index: llvm/tools/bugpoint/ListReducer.h
diff -u llvm/tools/bugpoint/ListReducer.h:1.6 llvm/tools/bugpoint/ListReducer.h:1.7
--- llvm/tools/bugpoint/ListReducer.h:1.6	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/ListReducer.h	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This class is to be used as a base class for operations that want to zero in
 // on a subset of the input which still causes the bug we are tracking.


Index: llvm/tools/bugpoint/Miscompilation.cpp
diff -u llvm/tools/bugpoint/Miscompilation.cpp:1.22 llvm/tools/bugpoint/Miscompilation.cpp:1.23
--- llvm/tools/bugpoint/Miscompilation.cpp:1.22	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/Miscompilation.cpp	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file implements program miscompilation debugging support.
 //


Index: llvm/tools/bugpoint/OptimizerDriver.cpp
diff -u llvm/tools/bugpoint/OptimizerDriver.cpp:1.14 llvm/tools/bugpoint/OptimizerDriver.cpp:1.15
--- llvm/tools/bugpoint/OptimizerDriver.cpp:1.14	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/OptimizerDriver.cpp	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file defines an interface that allows bugpoint to run various passes
 // without the threat of a buggy pass corrupting bugpoint (of course, bugpoint


Index: llvm/tools/bugpoint/TestPasses.cpp
diff -u llvm/tools/bugpoint/TestPasses.cpp:1.4 llvm/tools/bugpoint/TestPasses.cpp:1.5
--- llvm/tools/bugpoint/TestPasses.cpp:1.4	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/TestPasses.cpp	Mon Oct 20 12:57:13 2003
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file contains "buggy" passes that are used to test bugpoint, to check
 // that it is narrowing down testcases correctly.


Index: llvm/tools/bugpoint/bugpoint.cpp
diff -u llvm/tools/bugpoint/bugpoint.cpp:1.9 llvm/tools/bugpoint/bugpoint.cpp:1.10
--- llvm/tools/bugpoint/bugpoint.cpp:1.9	Mon Oct 20 12:47:07 2003
+++ llvm/tools/bugpoint/bugpoint.cpp	Mon Oct 20 12:57:13 2003
@@ -1,4 +1,4 @@
-//===- bugpoint.cpp - The LLVM BugPoint utility ---------------------------===//
+//===- bugpoint.cpp - The LLVM Bugpoint utility ---------------------------===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This program is an automated compiler debugger tool.  It is used to narrow
 // down miscompilations and crash problems to a specific pass in the compiler,





More information about the llvm-commits mailing list