diff options
-rw-r--r-- | include/llvm/Transforms/IPO/SimpleStructMutation.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Transforms/IPO/SimpleStructMutation.h b/include/llvm/Transforms/IPO/SimpleStructMutation.h index ccfcea771a..518b6a6128 100644 --- a/include/llvm/Transforms/IPO/SimpleStructMutation.h +++ b/include/llvm/Transforms/IPO/SimpleStructMutation.h @@ -9,7 +9,8 @@ #define LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H class Pass; -Pass *createSwapElementsPass(); -Pass *createSortElementsPass(); +class TargetData; +Pass *createSwapElementsPass(const TargetData &); +Pass *createSortElementsPass(const TargetData &); #endif |