mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
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:
parent
78d4330fd8
commit
44c7486c63
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user