projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59aa540
)
Make this static inline to avoid duplicates.
author
Bill Wendling
<isanbard@gmail.com>
Wed, 19 Jun 2013 22:12:11 +0000
(22:12 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Wed, 19 Jun 2013 22:12:11 +0000
(22:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184374
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Target/TargetOptions.h
patch
|
blob
|
history
diff --git
a/include/llvm/Target/TargetOptions.h
b/include/llvm/Target/TargetOptions.h
index e4a4b8797a22067d77b90644fce699b8b9c4e3ea..037a5f2fadd24511dc52865ada046d5d42a22a65 100644
(file)
--- a/
include/llvm/Target/TargetOptions.h
+++ b/
include/llvm/Target/TargetOptions.h
@@
-209,7
+209,7
@@
namespace llvm {
bool operator==(const TargetOptions &LHS, const TargetOptions &RHS);
-bool operator!=(const TargetOptions &LHS, const TargetOptions &RHS) {
+
static inline
bool operator!=(const TargetOptions &LHS, const TargetOptions &RHS) {
return !(LHS == RHS);
}