Fix -Wextra-semi warnings.
[oota-llvm.git] / include / llvm / Analysis / TargetLibraryInfo.h
index e0a1ee378274a3e2aee5d52fd10c95f44cda1bce..98e450c867d4e67712cc0edd2f2e1b778fa5d72e 100644 (file)
@@ -201,13 +201,13 @@ public:
   }
   bool isFunctionVectorizable(StringRef F, unsigned VF) const {
     return Impl->isFunctionVectorizable(F, VF);
-  };
+  }
   bool isFunctionVectorizable(StringRef F) const {
     return Impl->isFunctionVectorizable(F);
-  };
+  }
   StringRef getVectorizedFunction(StringRef F, unsigned VF) const {
     return Impl->getVectorizedFunction(F, VF);
-  };
+  }
 
   /// \brief Tests if the function is both available and a candidate for
   /// optimized code generation.