aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-19 01:28:09 +0000
committerChris Lattner <sabre@nondot.org>2010-01-19 01:28:09 +0000
commit9a7313af77e81fe894debafd8c93e2551a74d1a6 (patch)
treea7ba4cc139cf12eaad6564a025c90f78f4f3e531 /include
parentf54b85237c666e6c473392b0e85aa9724cd0df79 (diff)
downloadexternal_llvm-9a7313af77e81fe894debafd8c93e2551a74d1a6.zip
external_llvm-9a7313af77e81fe894debafd8c93e2551a74d1a6.tar.gz
external_llvm-9a7313af77e81fe894debafd8c93e2551a74d1a6.tar.bz2
remove extraneous ;
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/DebugInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h
index b74fe70..365823d 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); }