diff options
Diffstat (limited to 'llvm/tools/bugpoint')
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.h | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/CodeGeneratorBug.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/CrashDebugger.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/ExecutionDriver.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/ExtractFunction.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/ListReducer.h | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/Miscompilation.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/OptimizerDriver.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/TestPasses.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/bugpoint/bugpoint.cpp | 8 |
11 files changed, 88 insertions, 0 deletions
diff --git a/llvm/tools/bugpoint/BugDriver.cpp b/llvm/tools/bugpoint/BugDriver.cpp index ff68fb05faa..b28b46252d4 100644 --- a/llvm/tools/bugpoint/BugDriver.cpp +++ b/llvm/tools/bugpoint/BugDriver.cpp @@ -1,4 +1,12 @@ //===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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 diff --git a/llvm/tools/bugpoint/BugDriver.h b/llvm/tools/bugpoint/BugDriver.h index 43edf5c264f..491bee9b8fc 100644 --- a/llvm/tools/bugpoint/BugDriver.h +++ b/llvm/tools/bugpoint/BugDriver.h @@ -1,4 +1,12 @@ //===- BugDriver.h - Top-Level BugPoint class -------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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 diff --git a/llvm/tools/bugpoint/CodeGeneratorBug.cpp b/llvm/tools/bugpoint/CodeGeneratorBug.cpp index 21cfa08069d..60964bcfb3d 100644 --- a/llvm/tools/bugpoint/CodeGeneratorBug.cpp +++ b/llvm/tools/bugpoint/CodeGeneratorBug.cpp @@ -1,4 +1,12 @@ //===- CodeGeneratorBug.cpp - Debug code generation bugs ------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// // // This file implements program code generation debugging support. // diff --git a/llvm/tools/bugpoint/CrashDebugger.cpp b/llvm/tools/bugpoint/CrashDebugger.cpp index b34d8805657..b095d165b23 100644 --- a/llvm/tools/bugpoint/CrashDebugger.cpp +++ b/llvm/tools/bugpoint/CrashDebugger.cpp @@ -1,4 +1,12 @@ //===- CrashDebugger.cpp - Debug compilation crashes ----------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// // // This file defines the bugpoint internals that narrow down compilation crashes // diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp index 635a691822d..18c2a9060b4 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/tools/bugpoint/ExecutionDriver.cpp @@ -1,4 +1,12 @@ //===- ExecutionDriver.cpp - Allow execution of LLVM program --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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. diff --git a/llvm/tools/bugpoint/ExtractFunction.cpp b/llvm/tools/bugpoint/ExtractFunction.cpp index 68dc3c913f9..00e0d6c40e9 100644 --- a/llvm/tools/bugpoint/ExtractFunction.cpp +++ b/llvm/tools/bugpoint/ExtractFunction.cpp @@ -1,4 +1,12 @@ //===- ExtractFunction.cpp - Extract a function from Program --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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. diff --git a/llvm/tools/bugpoint/ListReducer.h b/llvm/tools/bugpoint/ListReducer.h index cc8ab20c195..96341e8f731 100644 --- a/llvm/tools/bugpoint/ListReducer.h +++ b/llvm/tools/bugpoint/ListReducer.h @@ -1,4 +1,12 @@ //===- ListReducer.h - Trim down list while retaining property --*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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. diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp index 95d24e96a58..bf8c43d3a66 100644 --- a/llvm/tools/bugpoint/Miscompilation.cpp +++ b/llvm/tools/bugpoint/Miscompilation.cpp @@ -1,4 +1,12 @@ //===- Miscompilation.cpp - Debug program miscompilations -----------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// // // This file implements program miscompilation debugging support. // diff --git a/llvm/tools/bugpoint/OptimizerDriver.cpp b/llvm/tools/bugpoint/OptimizerDriver.cpp index 9b855bedfc9..424a7aad140 100644 --- a/llvm/tools/bugpoint/OptimizerDriver.cpp +++ b/llvm/tools/bugpoint/OptimizerDriver.cpp @@ -1,4 +1,12 @@ //===- OptimizerDriver.cpp - Allow BugPoint to run passes safely ----------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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 diff --git a/llvm/tools/bugpoint/TestPasses.cpp b/llvm/tools/bugpoint/TestPasses.cpp index 32bca9555b6..25f28192e4c 100644 --- a/llvm/tools/bugpoint/TestPasses.cpp +++ b/llvm/tools/bugpoint/TestPasses.cpp @@ -1,4 +1,12 @@ //===- TestPasses.cpp - "buggy" passes used to test bugpoint --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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. diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp index 646d43afef1..9e0d034b1a5 100644 --- a/llvm/tools/bugpoint/bugpoint.cpp +++ b/llvm/tools/bugpoint/bugpoint.cpp @@ -1,4 +1,12 @@ //===- bugpoint.cpp - The LLVM BugPoint utility ---------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// 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, |