Change over to use new style pass mechanism, now passes only expose small
[oota-llvm.git] / include / llvm / Transforms / IPO / SimpleStructMutation.h
1 //===- llvm/Transforms/SimpleStructMutation.h - Permute Structs --*- C++ -*--=//
2 //
3 // This pass does is a wrapper that can do a few simple structure mutation
4 // transformations.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H
9 #define LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H
10
11 class Pass;
12 Pass *createSwapElementsPass();
13 Pass *createSortElementsPass();
14
15 #endif