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
This commit is contained in:
Bill Wendling 2013-06-20 06:51:06 +00:00
parent 4532c280f5
commit face8d901e

View File

@ -208,7 +208,7 @@ namespace llvm {
// Comparison operators:
static inline bool operator==(const TargetOptions &LHS,
inline bool operator==(const TargetOptions &LHS,
const TargetOptions &RHS) {
#define ARE_EQUAL(X) LHS.X == RHS.X
return
@ -235,7 +235,7 @@ static inline bool operator==(const TargetOptions &LHS,
#undef ARE_EQUAL
}
static inline bool operator!=(const TargetOptions &LHS,
inline bool operator!=(const TargetOptions &LHS,
const TargetOptions &RHS) {
return !(LHS == RHS);
}