From: Chris Lattner Date: Tue, 19 Jan 2010 01:28:09 +0000 (+0000) Subject: remove extraneous ; X-Git-Tag: android-x86-6.0-r1~1003^2~10875 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9a7313af77e81fe894debafd8c93e2551a74d1a6;p=android-x86%2Fexternal-llvm.git remove extraneous ; git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93833 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index b74fe7089b6..365823ddf23 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -475,7 +475,7 @@ namespace llvm { /// is not associated with any DWARF tag. class DILocation : public DIDescriptor { public: - explicit DILocation(MDNode *N) : DIDescriptor(N) { ; } + explicit DILocation(MDNode *N) : DIDescriptor(N) { } unsigned getLineNumber() const { return getUnsignedField(0); } unsigned getColumnNumber() const { return getUnsignedField(1); }