diff --git a/lib/Transforms/IPO/MergeFunctions.cpp b/lib/Transforms/IPO/MergeFunctions.cpp index d084b2a0752..43b08bd9b3e 100644 --- a/lib/Transforms/IPO/MergeFunctions.cpp +++ b/lib/Transforms/IPO/MergeFunctions.cpp @@ -108,7 +108,7 @@ namespace { class FunctionComparator { public: FunctionComparator(TargetData *TD, Function *F1, Function *F2) - : TD(TD), F1(F1), F2(F2) {} + : F1(F1), F2(F2), TD(TD) {} // Compare - test whether the two functions have equivalent behaviour. bool Compare();