From f227bf3b2673aae132e255465b43a2db68f65ded Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 24 Jul 2014 02:11:24 +0000 Subject: [PATCH] Remove a stray semicolon. [-Wpedantic] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213833 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/Value.h b/include/llvm/IR/Value.h index 9e4ee2d9431..1e86999df65 100644 --- a/include/llvm/IR/Value.h +++ b/include/llvm/IR/Value.h @@ -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... -- 2.34.1