From: Benjamin Kramer Date: Wed, 30 May 2012 09:13:49 +0000 (+0000) Subject: Remove little semicolon that caused a lot of warnings. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dee3be60292ecfafe584baf4ed84b634b8f4c7c7;p=oota-llvm.git Remove little semicolon that caused a lot of warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157684 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/CodeGenRegisters.h b/utils/TableGen/CodeGenRegisters.h index 0c348c367e5..eb6724ea1ac 100644 --- a/utils/TableGen/CodeGenRegisters.h +++ b/utils/TableGen/CodeGenRegisters.h @@ -564,7 +564,7 @@ namespace llvm { unsigned getNumNativeRegUnits() const { return NumNativeRegUnits; - }; + } RegUnit &getRegUnit(unsigned RUID) { return RegUnits[RUID]; } const RegUnit &getRegUnit(unsigned RUID) const { return RegUnits[RUID]; }