[llvm] r213833 - Remove a stray semicolon. [-Wpedantic]
NAKAMURA Takumi
geek4civic at gmail.com
Wed Jul 23 19:11:24 PDT 2014
Author: chapuni
Date: Wed Jul 23 21:11:24 2014
New Revision: 213833
URL: http://llvm.org/viewvc/llvm-project?rev=213833&view=rev
Log:
Remove a stray semicolon. [-Wpedantic]
Modified:
llvm/trunk/include/llvm/IR/Value.h
Modified: llvm/trunk/include/llvm/IR/Value.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Value.h?rev=213833&r1=213832&r2=213833&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Value.h (original)
+++ llvm/trunk/include/llvm/IR/Value.h Wed Jul 23 21:11:24 2014
@@ -584,7 +584,7 @@ void Value::mergeUseListsImpl(Use *L, Us
}
*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...
More information about the llvm-commits
mailing list