Fix a -Wreorder warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2010-08-02 05:43:46 +00:00
parent 78d4330fd8
commit 44c7486c63

View File

@ -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();