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 | 04c85dcad8f67d2bb2e0e5d051d130f90e473d86 (patch) | |
tree | 1853bf5e533cccbdffeccba0d4af7fa34e9301e2 /lib/Transforms/IPO/SimpleStructMutation.cpp | |
parent | 24d5c6a0cc52690c62844dfccd44ce40b87ee2a8 (diff) |
Rename SwapStructureContents -> IPO/SimpleStructMutation
Move MutateStructTypes.(cpp|h) -> IPO/MutateStructTypes.(cpp|h)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/SimpleStructMutation.cpp')
-rw-r--r-- | lib/Transforms/IPO/SimpleStructMutation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Transforms/IPO/SimpleStructMutation.cpp b/lib/Transforms/IPO/SimpleStructMutation.cpp index 571638e867..7e28af3df3 100644 --- a/lib/Transforms/IPO/SimpleStructMutation.cpp +++ b/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; |