diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-08-18 18:40:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-08-18 18:40:57 +0000 |
commit | 817e857b13c832d0e5d7a1cf4207d691e08cd4fd (patch) | |
tree | 6a039a4a1fee6391a3aa7443ac86e4a2fc75b5c3 /llvm/lib/Target/X86/X86FloatingPoint.cpp | |
parent | 208636fa3368570a34447053162fc4218c560c03 (diff) | |
download | bcm5719-llvm-817e857b13c832d0e5d7a1cf4207d691e08cd4fd.tar.gz bcm5719-llvm-817e857b13c832d0e5d7a1cf4207d691e08cd4fd.zip |
Marked with ATTRIBUTE_USED so that clang doesn't complain.
llvm-svn: 111383
Diffstat (limited to 'llvm/lib/Target/X86/X86FloatingPoint.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FloatingPoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FloatingPoint.cpp b/llvm/lib/Target/X86/X86FloatingPoint.cpp index 4bf7cdbdbee..e6ebf669587 100644 --- a/llvm/lib/Target/X86/X86FloatingPoint.cpp +++ b/llvm/lib/Target/X86/X86FloatingPoint.cpp @@ -572,7 +572,7 @@ namespace { friend bool operator<(const TableEntry &TE, unsigned V) { return TE.from < V; } - friend bool operator<(unsigned V, const TableEntry &TE) { + friend bool ATTRIBUTE_USED operator<(unsigned V, const TableEntry &TE) { return V < TE.from; } }; |