[GVNHoist] Fix typo in assert.

This fixes PR28730.

llvm-svn: 276844
This commit is contained in:
George Burgess IV 2016-07-27 06:34:53 +00:00
parent be1cb22587
commit 9cf05464aa
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public:
unsigned ADFS = DFSNumber.lookup(A);
unsigned BDFS = DFSNumber.lookup(B);
assert (ADFS && ADFS);
assert (ADFS && BDFS);
return ADFS < BDFS;
}
};