diff options
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-reduce/CMakeLists.txt | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-reduce/DeltaManager.cpp | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-reduce/deltas/ReduceDbgRecords.cpp (renamed from llvm/tools/llvm-reduce/deltas/ReduceDPValues.cpp) | 8 | ||||
-rw-r--r-- | llvm/tools/llvm-reduce/deltas/ReduceDbgRecords.h (renamed from llvm/tools/llvm-reduce/deltas/ReduceDPValues.h) | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/llvm/tools/llvm-reduce/CMakeLists.txt b/llvm/tools/llvm-reduce/CMakeLists.txt index 2f1164b..a4c605f 100644 --- a/llvm/tools/llvm-reduce/CMakeLists.txt +++ b/llvm/tools/llvm-reduce/CMakeLists.txt @@ -31,7 +31,7 @@ add_llvm_tool(llvm-reduce deltas/ReduceAttributes.cpp deltas/ReduceBasicBlocks.cpp deltas/ReduceDIMetadata.cpp - deltas/ReduceDPValues.cpp + deltas/ReduceDbgRecords.cpp deltas/ReduceFunctionBodies.cpp deltas/ReduceFunctions.cpp deltas/ReduceGlobalObjects.cpp diff --git a/llvm/tools/llvm-reduce/DeltaManager.cpp b/llvm/tools/llvm-reduce/DeltaManager.cpp index fa42920..67fbc2f 100644 --- a/llvm/tools/llvm-reduce/DeltaManager.cpp +++ b/llvm/tools/llvm-reduce/DeltaManager.cpp @@ -20,7 +20,7 @@ #include "deltas/ReduceAttributes.h" #include "deltas/ReduceBasicBlocks.h" #include "deltas/ReduceDIMetadata.h" -#include "deltas/ReduceDPValues.h" +#include "deltas/ReduceDbgRecords.h" #include "deltas/ReduceFunctionBodies.h" #include "deltas/ReduceFunctions.h" #include "deltas/ReduceGlobalObjects.h" diff --git a/llvm/tools/llvm-reduce/deltas/ReduceDPValues.cpp b/llvm/tools/llvm-reduce/deltas/ReduceDbgRecords.cpp index f0d02a7..94b12eb 100644 --- a/llvm/tools/llvm-reduce/deltas/ReduceDPValues.cpp +++ b/llvm/tools/llvm-reduce/deltas/ReduceDbgRecords.cpp @@ -1,4 +1,4 @@ -//===- ReduceDPValues.cpp - Specialized Delta Pass ------------------------===// +//===- ReduceDbgRecords.cpp - Specialized Delta Pass ----------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -17,13 +17,13 @@ // //===----------------------------------------------------------------------===// -#include "ReduceDPValues.h" +#include "ReduceDbgRecords.h" #include "Utils.h" #include "llvm/ADT/STLExtras.h" using namespace llvm; -static void extractDPValuesFromModule(Oracle &O, ReducerWorkItem &WorkItem) { +static void extractDbgRecordsFromModule(Oracle &O, ReducerWorkItem &WorkItem) { Module &M = WorkItem.getModule(); for (auto &F : M) @@ -35,5 +35,5 @@ static void extractDPValuesFromModule(Oracle &O, ReducerWorkItem &WorkItem) { } void llvm::reduceDbgRecordDeltaPass(TestRunner &Test) { - runDeltaPass(Test, extractDPValuesFromModule, "Reducing DbgRecords"); + runDeltaPass(Test, extractDbgRecordsFromModule, "Reducing DbgRecords"); } diff --git a/llvm/tools/llvm-reduce/deltas/ReduceDPValues.h b/llvm/tools/llvm-reduce/deltas/ReduceDbgRecords.h index 1d3b8a3..6a8f621 100644 --- a/llvm/tools/llvm-reduce/deltas/ReduceDPValues.h +++ b/llvm/tools/llvm-reduce/deltas/ReduceDbgRecords.h @@ -1,4 +1,4 @@ -//===- ReduceDPValues.h -----------------------------------------*- C++ -*-===// +//===- ReduceDbgRecords.h ---------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEDPVALUES_H -#define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEDPVALUES_H +#ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEDBGRECORDS_H +#define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEDBGRECORDS_H #include "Delta.h" #include "llvm/IR/BasicBlock.h" |