blob: ccfcea771abdcb2376abdc5531e4641938131f32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//===- llvm/Transforms/SimpleStructMutation.h - Permute Structs --*- C++ -*--=//
//
// This pass does is a wrapper that can do a few simple structure mutation
// transformations.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H
#define LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H
class Pass;
Pass *createSwapElementsPass();
Pass *createSortElementsPass();
#endif
|