Remove a stray semicolon. [-Wpedantic]

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213833 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2014-07-24 02:11:24 +00:00
parent 9fda421ee4
commit f227bf3b26

View File

@ -584,7 +584,7 @@ void Value::mergeUseListsImpl(Use *L, Use *R, Use **Next, Compare Cmp) {
}
*Next = L;
mergeUseListsImpl(L->Next, R, &L->Next, Cmp);
};
}
// isa - Provide some specializations of isa so that we don't have to include
// the subtype header files to test to see if the value is a subclass...