Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7e7ede5
Update llvm-project.
StephanTLavavej Mar 17, 2025
21cd5cf
LLVM-116054 was fixed.
StephanTLavavej Mar 17, 2025
b809030
time.zone.members/to_sys_choose.pass.cpp is now passing.
StephanTLavavej Mar 17, 2025
9003897
Mark new flat_map and flat_multimap tests as FAIL.
StephanTLavavej Mar 17, 2025
4eafe6a
Filed GH 5345.
StephanTLavavej Mar 18, 2025
f255cdc
Categorize MSVC constexpr bugs.
StephanTLavavej Mar 18, 2025
54ff5be
Add constexpr step limit failures.
StephanTLavavej Mar 18, 2025
452c557
Mark unconditional use of `[[clang::trivial_abi]]` as a known failure.
StephanTLavavej Mar 18, 2025
237cfb6
Categorize formatter.utc_time.pass.cpp failures.
StephanTLavavej Mar 18, 2025
62d913a
Add "various assertions".
StephanTLavavej Mar 18, 2025
3706930
Update magic comments.
StephanTLavavej Mar 18, 2025
baaa1e3
Skip flaky tests, fixing VSO-2321213 and VSO-2416940.
StephanTLavavej Mar 18, 2025
251e7a2
Add and consolidate x64-specific truncation warnings.
StephanTLavavej Mar 18, 2025
f513254
Categorize a not-analyzed failure.
StephanTLavavej Mar 19, 2025
b0dce1a
tests/std: Fix VSO-2359637 by skipping Dev11_1127004_future_has_excep…
StephanTLavavej Mar 18, 2025
4b03aed
Product fix: Consistently use `_Iter_diff_t<_VbIt>` to fix truncation…
StephanTLavavej Mar 18, 2025
e9af3ae
Skip all "technically flaky" tests.
StephanTLavavej Mar 20, 2025
1612a1c
* Add missing STL features.
StephanTLavavej Mar 21, 2025
f1b96ea
* Restore and consolidate internal `XFAIL: msvc` skips.
StephanTLavavej Mar 21, 2025
81c27c6
* Add std-at-least-c++MEOW custom features.
StephanTLavavej Mar 21, 2025
c854d5d
* Categorize std/time failures.
StephanTLavavej Mar 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llvm-project
Submodule llvm-project updated 20092 files
10 changes: 5 additions & 5 deletions stl/inc/vector
Original file line number Diff line number Diff line change
Expand Up @@ -3731,22 +3731,22 @@ _NODISCARD _CONSTEXPR20 _VbIt _Find_vbool(_VbIt _First, const _VbIt _Last, const
const auto _SourceMask = _FirstSourceMask & _LastSourceMask;
const auto _SelectVal = (_Val ? *_VbFirst : ~*_VbFirst) & _SourceMask;
const auto _Count = _Countr_zero(_SelectVal);
return _Count == _VBITS ? _Last : _First + static_cast<ptrdiff_t>(_Count - _First._Myoff);
return _Count == _VBITS ? _Last : _First + static_cast<_Iter_diff_t<_VbIt>>(_Count - _First._Myoff);
}

const auto _FirstVal = (_Val ? *_VbFirst : ~*_VbFirst) & _FirstSourceMask;
const auto _FirstCount = _Countr_zero(_FirstVal);
if (_FirstCount != _VBITS) {
return _First + static_cast<ptrdiff_t>(_FirstCount - _First._Myoff);
return _First + static_cast<_Iter_diff_t<_VbIt>>(_FirstCount - _First._Myoff);
}
++_VbFirst;

_Iter_diff_t<_VbIt> _TotalCount = static_cast<ptrdiff_t>(_VBITS - _First._Myoff);
auto _TotalCount = static_cast<_Iter_diff_t<_VbIt>>(_VBITS - _First._Myoff);
for (; _VbFirst != _VbLast; ++_VbFirst, _TotalCount += _VBITS) {
const auto _SelectVal = _Val ? *_VbFirst : ~*_VbFirst;
const auto _Count = _Countr_zero(_SelectVal);
if (_Count != _VBITS) {
return _First + (_TotalCount + _Count);
return _First + static_cast<_Iter_diff_t<_VbIt>>(_TotalCount + _Count);
}
}

Expand All @@ -3755,7 +3755,7 @@ _NODISCARD _CONSTEXPR20 _VbIt _Find_vbool(_VbIt _First, const _VbIt _Last, const
const auto _LastVal = (_Val ? *_VbFirst : ~*_VbFirst) & _LastSourceMask;
const auto _Count = _Countr_zero(_LastVal);
if (_Count != _VBITS) {
return _First + (_TotalCount + _Count);
return _First + static_cast<_Iter_diff_t<_VbIt>>(_TotalCount + _Count);
}
}

Expand Down
Loading