[llvm-commits] [llvm] r93833 - /llvm/trunk/include/llvm/Analysis/DebugInfo.h

Chris Lattner sabre at nondot.org
Mon Jan 18 17:28:09 PST 2010


Author: lattner
Date: Mon Jan 18 19:28:09 2010
New Revision: 93833

URL: http://llvm.org/viewvc/llvm-project?rev=93833&view=rev
Log:
remove extraneous ;

Modified:
    llvm/trunk/include/llvm/Analysis/DebugInfo.h

Modified: llvm/trunk/include/llvm/Analysis/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?rev=93833&r1=93832&r2=93833&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/DebugInfo.h Mon Jan 18 19:28:09 2010
@@ -475,7 +475,7 @@
   /// 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); }





More information about the llvm-commits mailing list