[llvm-commits] [llvm] r115176 - /llvm/trunk/lib/Target/ARM/ARMAsmBackend.cpp

Jim Grosbach grosbach at apple.com
Thu Sep 30 10:19:17 PDT 2010


Author: grosbach
Date: Thu Sep 30 12:19:17 2010
New Revision: 115176

URL: http://llvm.org/viewvc/llvm-project?rev=115176&view=rev
Log:
Remove extraneous ';'

Modified:
    llvm/trunk/lib/Target/ARM/ARMAsmBackend.cpp

Modified: llvm/trunk/lib/Target/ARM/ARMAsmBackend.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMAsmBackend.cpp?rev=115176&r1=115175&r2=115176&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMAsmBackend.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMAsmBackend.cpp Thu Sep 30 12:19:17 2010
@@ -87,7 +87,7 @@
 
   unsigned getPointerSize() const {
     return 4;
-  };
+  }
 };
 
 // Fixme: can we raise this to share code between Darwin and ELF?
@@ -122,7 +122,7 @@
 
   unsigned getPointerSize() const {
     return 4;
-  };
+  }
 
   virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
     return false;





More information about the llvm-commits mailing list