[llvm-commits] [llvm] r172891 - in /llvm/trunk: include/llvm/Analysis/TargetTransformInfo.h lib/Target/PowerPC/PPCISelDAGToDAG.cpp lib/Transforms/Instrumentation/AddressSanitizer.cpp lib/Transforms/Instrumentation/BlackList.cpp lib/Transforms/Instrumentation/MemorySanitizer.cpp lib/Transforms/Instrumentation/ThreadSanitizer.cpp tools/bugpoint/bugpoint.cpp tools/llvm-objdump/ELFDump.cpp tools/opt/opt.cpp

Kostya Serebryany kcc at google.com
Sat Jan 19 11:17:44 PST 2013


On Sat, Jan 19, 2013 at 12:03 PM, Chandler Carruth <chandlerc at gmail.com>wrote:

> Author: chandlerc
> Date: Sat Jan 19 02:03:47 2013
> New Revision: 172891
>
> URL: http://llvm.org/viewvc/llvm-project?rev=172891&view=rev
> Log:
> Sort all of the includes. Several files got checked in with mis-sorted
> includes.
>

Sorry for that.
Can/should we enforce this pre-commit somehow?


>
> Modified:
>     llvm/trunk/include/llvm/Analysis/TargetTransformInfo.h
>     llvm/trunk/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
>     llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
>     llvm/trunk/lib/Transforms/Instrumentation/BlackList.cpp
>     llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp
>     llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
>     llvm/trunk/tools/bugpoint/bugpoint.cpp
>     llvm/trunk/tools/llvm-objdump/ELFDump.cpp
>     llvm/trunk/tools/opt/opt.cpp
>
> Modified: llvm/trunk/include/llvm/Analysis/TargetTransformInfo.h
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/TargetTransformInfo.h?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/include/llvm/Analysis/TargetTransformInfo.h (original)
> +++ llvm/trunk/include/llvm/Analysis/TargetTransformInfo.h Sat Jan 19
> 02:03:47 2013
> @@ -22,12 +22,12 @@
>  #ifndef LLVM_ANALYSIS_TARGETTRANSFORMINFO_H
>  #define LLVM_ANALYSIS_TARGETTRANSFORMINFO_H
>
> +#include "llvm/CodeGen/ValueTypes.h"
>  #include "llvm/IR/GlobalValue.h"
>  #include "llvm/IR/Intrinsics.h"
>  #include "llvm/IR/Type.h"
>  #include "llvm/Pass.h"
>  #include "llvm/Support/DataTypes.h"
> -#include "llvm/CodeGen/ValueTypes.h"
>
>  namespace llvm {
>
>
> Modified: llvm/trunk/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCISelDAGToDAG.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Target/PowerPC/PPCISelDAGToDAG.cpp (original)
> +++ llvm/trunk/lib/Target/PowerPC/PPCISelDAGToDAG.cpp Sat Jan 19 02:03:47
> 2013
> @@ -23,9 +23,9 @@
>  #include "llvm/CodeGen/SelectionDAGISel.h"
>  #include "llvm/IR/Constants.h"
>  #include "llvm/IR/Function.h"
> +#include "llvm/IR/GlobalAlias.h"
>  #include "llvm/IR/GlobalValue.h"
>  #include "llvm/IR/GlobalVariable.h"
> -#include "llvm/IR/GlobalAlias.h"
>  #include "llvm/IR/Intrinsics.h"
>  #include "llvm/Support/Debug.h"
>  #include "llvm/Support/ErrorHandling.h"
>
> Modified: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
> (original)
> +++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp Sat Jan
> 19 02:03:47 2013
> @@ -16,7 +16,6 @@
>  #define DEBUG_TYPE "asan"
>
>  #include "llvm/Transforms/Instrumentation.h"
> -#include "llvm/Transforms/Utils/BlackList.h"
>  #include "llvm/ADT/ArrayRef.h"
>  #include "llvm/ADT/DenseMap.h"
>  #include "llvm/ADT/DepthFirstIterator.h"
> @@ -43,6 +42,7 @@
>  #include "llvm/Support/system_error.h"
>  #include "llvm/Target/TargetMachine.h"
>  #include "llvm/Transforms/Utils/BasicBlockUtils.h"
> +#include "llvm/Transforms/Utils/BlackList.h"
>  #include "llvm/Transforms/Utils/Local.h"
>  #include "llvm/Transforms/Utils/ModuleUtils.h"
>  #include <algorithm>
>
> Modified: llvm/trunk/lib/Transforms/Instrumentation/BlackList.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/BlackList.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Transforms/Instrumentation/BlackList.cpp (original)
> +++ llvm/trunk/lib/Transforms/Instrumentation/BlackList.cpp Sat Jan 19
> 02:03:47 2013
> @@ -14,7 +14,6 @@
>
>  //===----------------------------------------------------------------------===//
>
>  #include "llvm/Transforms/Utils/BlackList.h"
> -
>  #include "llvm/ADT/OwningPtr.h"
>  #include "llvm/ADT/SmallVector.h"
>  #include "llvm/ADT/StringExtras.h"
>
> Modified: llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp
> (original)
> +++ llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp Sat Jan
> 19 02:03:47 2013
> @@ -71,7 +71,6 @@
>  #define DEBUG_TYPE "msan"
>
>  #include "llvm/Transforms/Instrumentation.h"
> -#include "llvm/Transforms/Utils/BlackList.h"
>  #include "llvm/ADT/DepthFirstIterator.h"
>  #include "llvm/ADT/SmallString.h"
>  #include "llvm/ADT/SmallVector.h"
> @@ -91,6 +90,7 @@
>  #include "llvm/Support/Debug.h"
>  #include "llvm/Support/raw_ostream.h"
>  #include "llvm/Transforms/Utils/BasicBlockUtils.h"
> +#include "llvm/Transforms/Utils/BlackList.h"
>  #include "llvm/Transforms/Utils/Local.h"
>  #include "llvm/Transforms/Utils/ModuleUtils.h"
>
>
> Modified: llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
> (original)
> +++ llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp Sat Jan
> 19 02:03:47 2013
> @@ -22,7 +22,6 @@
>  #define DEBUG_TYPE "tsan"
>
>  #include "llvm/Transforms/Instrumentation.h"
> -#include "llvm/Transforms/Utils/BlackList.h"
>  #include "llvm/ADT/SmallSet.h"
>  #include "llvm/ADT/SmallString.h"
>  #include "llvm/ADT/SmallVector.h"
> @@ -41,6 +40,7 @@
>  #include "llvm/Support/MathExtras.h"
>  #include "llvm/Support/raw_ostream.h"
>  #include "llvm/Transforms/Utils/BasicBlockUtils.h"
> +#include "llvm/Transforms/Utils/BlackList.h"
>  #include "llvm/Transforms/Utils/ModuleUtils.h"
>
>  using namespace llvm;
>
> Modified: llvm/trunk/tools/bugpoint/bugpoint.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/bugpoint.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/bugpoint/bugpoint.cpp (original)
> +++ llvm/trunk/tools/bugpoint/bugpoint.cpp Sat Jan 19 02:03:47 2013
> @@ -16,8 +16,8 @@
>  #include "BugDriver.h"
>  #include "ToolRunner.h"
>  #include "llvm/IR/LLVMContext.h"
> -#include "llvm/LinkAllPasses.h"
>  #include "llvm/LinkAllIR.h"
> +#include "llvm/LinkAllPasses.h"
>  #include "llvm/PassManager.h"
>  #include "llvm/Support/CommandLine.h"
>  #include "llvm/Support/ManagedStatic.h"
>
> Modified: llvm/trunk/tools/llvm-objdump/ELFDump.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-objdump/ELFDump.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/llvm-objdump/ELFDump.cpp (original)
> +++ llvm/trunk/tools/llvm-objdump/ELFDump.cpp Sat Jan 19 02:03:47 2013
> @@ -13,7 +13,6 @@
>
>  //===----------------------------------------------------------------------===//
>
>  #include "llvm-objdump.h"
> -
>  #include "llvm/Object/ELF.h"
>  #include "llvm/Support/Format.h"
>  #include "llvm/Support/MathExtras.h"
>
> Modified: llvm/trunk/tools/opt/opt.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/opt/opt.cpp?rev=172891&r1=172890&r2=172891&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/opt/opt.cpp (original)
> +++ llvm/trunk/tools/opt/opt.cpp Sat Jan 19 02:03:47 2013
> @@ -26,8 +26,8 @@
>  #include "llvm/DebugInfo.h"
>  #include "llvm/IR/DataLayout.h"
>  #include "llvm/IR/Module.h"
> -#include "llvm/LinkAllPasses.h"
>  #include "llvm/LinkAllIR.h"
> +#include "llvm/LinkAllPasses.h"
>  #include "llvm/MC/SubtargetFeature.h"
>  #include "llvm/PassManager.h"
>  #include "llvm/Support/Debug.h"
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20130119/9045e082/attachment.html>


More information about the llvm-commits mailing list