From 44c7486c6331cdc726057b35ca57f00b5936e261 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 2 Aug 2010 05:43:46 +0000 Subject: [PATCH] Fix a -Wreorder warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110022 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/MergeFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();