From face8d901ebc2f3ac26e303603aae1b9304c4728 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 20 Jun 2013 06:51:06 +0000 Subject: Remove static, because it was messing everything up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184400 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetOptions.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/llvm') diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 54d5ae45c8..e240a9aeed 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -208,8 +208,8 @@ namespace llvm { // Comparison operators: -static inline bool operator==(const TargetOptions &LHS, - const TargetOptions &RHS) { +inline bool operator==(const TargetOptions &LHS, + const TargetOptions &RHS) { #define ARE_EQUAL(X) LHS.X == RHS.X return ARE_EQUAL(UnsafeFPMath) && @@ -235,8 +235,8 @@ static inline bool operator==(const TargetOptions &LHS, #undef ARE_EQUAL } -static inline bool operator!=(const TargetOptions &LHS, - const TargetOptions &RHS) { +inline bool operator!=(const TargetOptions &LHS, + const TargetOptions &RHS) { return !(LHS == RHS); } -- cgit v1.2.3