diff options
author | Chris Lattner <sabre@nondot.org> | 2002-01-21 07:52:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-01-21 07:52:35 +0000 |
commit | c940c536ab414de37204a4925b5bd142f3bfc651 (patch) | |
tree | 8250b69e6315900a9ad15b5951461594a67122b2 /llvm/lib/Transforms/IPO/SimpleStructMutation.cpp | |
parent | 2b2a8b1cac06176ca4cfb3b781ffb5b6505ff235 (diff) | |
download | bcm5719-llvm-c940c536ab414de37204a4925b5bd142f3bfc651.tar.gz bcm5719-llvm-c940c536ab414de37204a4925b5bd142f3bfc651.zip |
Rename SwapStructureContents -> IPO/SimpleStructMutation
Move MutateStructTypes.(cpp|h) -> IPO/MutateStructTypes.(cpp|h)
llvm-svn: 1510
Diffstat (limited to 'llvm/lib/Transforms/IPO/SimpleStructMutation.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/SimpleStructMutation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/IPO/SimpleStructMutation.cpp b/llvm/lib/Transforms/IPO/SimpleStructMutation.cpp index 571638e867e..7e28af3df3a 100644 --- a/llvm/lib/Transforms/IPO/SimpleStructMutation.cpp +++ b/llvm/lib/Transforms/IPO/SimpleStructMutation.cpp @@ -1,4 +1,4 @@ -//===- SwapStructContents.cpp - Swap structure elements around ---*- C++ -*--=// +//===- SimpleStructMutation.cpp - Swap structure elements around ---*- C++ -*--=// // // This pass does a simple transformation that swaps all of the elements of the // struct types in the program around. @@ -6,11 +6,11 @@ //===----------------------------------------------------------------------===// -#include "llvm/Transforms/SwapStructContents.h" -#include "llvm/Transforms/MutateStructTypes.h" +#include "llvm/Transforms/IPO/SimpleStructMutation.h" +#include "llvm/Transforms/IPO/MutateStructTypes.h" #include "llvm/Analysis/FindUsedTypes.h" #include "llvm/Analysis/FindUnsafePointerTypes.h" -#include "TransformInternals.h" +#include "../TransformInternals.h" #include <algorithm> #include <iostream> using std::vector; |