Displaying 5 results from an estimated 5 matches for "isless".
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
...th:316:9: error: '::isgreater' has not been declared
using ::isgreater;
^
llvm-3.8.0.src/projects/libcxx/include/cmath:317:9: error: '::isgreaterequal' has not been declared
using ::isgreaterequal;
^
llvm-3.8.0.src/projects/libcxx/include/cmath:318:9: error: '::isless' has not been declared
using ::isless;
^
llvm-3.8.0.src/projects/libcxx/include/cmath:319:9: error: '::islessequal' has not been declared
using ::islessequal;
^
llvm-3.8.0.src/projects/libcxx/include/cmath:320:9: error: '::islessgreater' has not been declared
u...
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
Greetings!
I have been building llvm-3.6.x, 3.7.1 and 3.7.2 with (glibc-2.12.1, binutils-2.24, gcc-4.9.2) almost same set if CMake flags.
However while building LLVM-3.8.0 using same CMake flags I am observing projects/libcxx/include/cmath errors...
...'::signbit' has not been declared
...'::fpclassify' has not been declared
...'::isfinite' has not been declared
...
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
2018 Jan 24
2
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
...t; ==================
> --- llvm/trunk/unittests/ADT/OptionalTest.cpp (original)
> +++ llvm/trunk/unittests/ADT/OptionalTest.cpp Thu Jan 18 03:26:24 2018
> @@ -518,5 +518,14 @@ TEST_F(OptionalTest, OperatorGreaterEqua
> CheckRelation<GreaterEqual>(InequalityLhs, InequalityRhs, !IsLess);
> }
>
> +#if (__has_feature(is_trivially_copyable) && defined(_LIBCPP_VERSION))
> || \
> + (defined(__GNUC__) && __GNUC__ >= 5)
> +static_assert(std::is_trivially_copyable<Optional<int>>::value,
> + "Should be triviall...
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
2018 Jan 24
0
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
...=====
>> --- llvm/trunk/unittests/ADT/OptionalTest.cpp (original)
>> +++ llvm/trunk/unittests/ADT/OptionalTest.cpp Thu Jan 18 03:26:24 2018
>> @@ -518,5 +518,14 @@ TEST_F(OptionalTest, OperatorGreaterEqua
>> CheckRelation<GreaterEqual>(InequalityLhs, InequalityRhs, !IsLess);
>> }
>>
>> +#if (__has_feature(is_trivially_copyable) && defined(_LIBCPP_VERSION)) ||
>> \
>> + (defined(__GNUC__) && __GNUC__ >= 5)
>> +static_assert(std::is_trivially_copyable<Optional<int>>::value,
>> + &...
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
2018 Jan 24
1
[llvm] r322838 - [ADT] Split optional to only include copy mechanics and dtor for non-trivial types.
...--- llvm/trunk/unittests/ADT/OptionalTest.cpp (original)
> >> +++ llvm/trunk/unittests/ADT/OptionalTest.cpp Thu Jan 18 03:26:24 2018
> >> @@ -518,5 +518,14 @@ TEST_F(OptionalTest, OperatorGreaterEqua
> >> CheckRelation<GreaterEqual>(InequalityLhs, InequalityRhs, !IsLess);
> >> }
> >>
> >> +#if (__has_feature(is_trivially_copyable) &&
> defined(_LIBCPP_VERSION)) ||
> >> \
> >> + (defined(__GNUC__) && __GNUC__ >= 5)
> >> +static_assert(std::is_trivially_copyable<Optional<int>>...