fix file headers
authorChris Lattner <sabre@nondot.org>
Mon, 20 Oct 2003 17:57:13 +0000 (17:57 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 20 Oct 2003 17:57:13 +0000 (17:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9293 91177308-0d34-0410-b5e6-96231b3b80d8

16 files changed:
tools/analyze/AnalysisWrappers.cpp
tools/analyze/GraphPrinters.cpp
tools/analyze/analyze.cpp
tools/bugpoint/BugDriver.cpp
tools/bugpoint/BugDriver.h
tools/bugpoint/CodeGeneratorBug.cpp
tools/bugpoint/CrashDebugger.cpp
tools/bugpoint/ExecutionDriver.cpp
tools/bugpoint/ExtractFunction.cpp
tools/bugpoint/ListReducer.h
tools/bugpoint/Miscompilation.cpp
tools/bugpoint/OptimizerDriver.cpp
tools/bugpoint/TestPasses.cpp
tools/bugpoint/bugpoint.cpp
tools/opt/AnalysisWrappers.cpp
tools/opt/GraphPrinters.cpp

index 57913770bf266b4cf6ce2d703b9002092f977dbf..6c4c99f5a3055bf2b5f3e20907be479c77bbb72c 100644 (file)
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file defines pass wrappers around LLVM analyses that don't make sense to
 // be passes.  It provides a nice standard pass interface to these classes so
index 83708ecbf71fc537eaec8028170ba78bbb1a4d5f..9a8c06770dd390cb4ab8f77a28c978e9fa4beef7 100644 (file)
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file defines several printers for various different types of graphs used
 // by the LLVM infrastructure.  It uses the generic graph interface to convert
index 17f7e4866d851098a812409ca45753ec4e262222..836b6aa8d7217e28e9c36b679cb21323b1e624f8 100644 (file)
@@ -1,4 +1,4 @@
-//===----------------------------------------------------------------------===//
+//===- analyze.cpp - The LLVM analyze utility -----------------------------===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -6,8 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
-// The LLVM analyze utility
 //
 // This utility is designed to print out the results of running various analysis
 // passes on a program.  This is useful for understanding a program, or for 
index b28b46252d4a6edc46f606ff559b8e9584e6e3d6..f0fb785db9c171c0ee2a77fe56e8125710a840e0 100644 (file)
@@ -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 491bee9b8fcef404404bf3f9edbe0b86167997ac..acd579914d4e0da913bd1ed905fdd3e0d49aaf52 100644 (file)
@@ -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 60964bcfb3d44c2b184153b7c4d49c3a4f1c493e..e83ef11836092bbe388c791f9dccf743f34bdb6c 100644 (file)
@@ -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 b095d165b23499ecc1fe2de460e91ae8a01ef1d0..412a31c20ef70efb562c010a0b2dbeeca54e9e8c 100644 (file)
@@ -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 18c2a9060b4aa51d09b74b8a9fb10fc435ef2584..17f377c7e04d567525e3ce37c71fd5065d35f3b1 100644 (file)
@@ -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 00e0d6c40e9e40f419276aa1cd895e43530dad66..f031d34dec2c86536944888e5ef478ea724885d2 100644 (file)
@@ -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 96341e8f731ac472b1c00096cd9d455890d7c33d..0ab2ef9927ac5787efbd91215839c23dbf69e47f 100644 (file)
@@ -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 bf8c43d3a66d8e9ce2b2e26d4002a34d4321cc90..5ec8b1543e36ac8cec8974c3c72990bc58b468ea 100644 (file)
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file implements program miscompilation debugging support.
 //
index 424a7aad140a96a7827dfdece1bd93906566af7d..600a25ad723b7b2a6d08d2412461914693fff78b 100644 (file)
@@ -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 25f28192e4c6f7ab934766438a5fe5ba79dd0444..af5c045788a724123eb63356480ef8154b622b5d 100644 (file)
@@ -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 9e0d034b1a50495dd8f1075a33802d328ab00b1f..8f55804e0cbc093c40a420b45ec0442c30a984ef 100644 (file)
@@ -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,
index 57913770bf266b4cf6ce2d703b9002092f977dbf..6c4c99f5a3055bf2b5f3e20907be479c77bbb72c 100644 (file)
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file defines pass wrappers around LLVM analyses that don't make sense to
 // be passes.  It provides a nice standard pass interface to these classes so
index 83708ecbf71fc537eaec8028170ba78bbb1a4d5f..9a8c06770dd390cb4ab8f77a28c978e9fa4beef7 100644 (file)
@@ -6,7 +6,6 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-// 
 //
 // This file defines several printers for various different types of graphs used
 // by the LLVM infrastructure.  It uses the generic graph interface to convert