{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":793391823,"defaultBranch":"main","name":"llvm-project","ownerLogin":"nxp-auto-tools","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2024-04-29T06:20:35.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/110323499?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1719573733.0","currentOid":""},"activityList":{"items":[{"before":"d677c41b4ef99f4191dd0a0d1834edad36d1b3b1","after":"52335b5cdfb2c9ed8f498acff7da16e42a1f6313","ref":"refs/heads/Zilsd/release/18.1.6","pushedAt":"2024-07-10T10:45:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Change the extension version and add a minor fix","shortMessageHtmlLink":"Change the extension version and add a minor fix"}},{"before":"1118c2e05e67a36ed8ca250524525cdb66a55256","after":"d677c41b4ef99f4191dd0a0d1834edad36d1b3b1","ref":"refs/heads/Zilsd/release/18.1.6","pushedAt":"2024-06-28T11:27:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Zilsd/Zcmlsd extensions LLVM 18.1.6","shortMessageHtmlLink":"Zilsd/Zcmlsd extensions LLVM 18.1.6"}},{"before":null,"after":"1118c2e05e67a36ed8ca250524525cdb66a55256","ref":"refs/heads/Zilsd/release/18.1.6","pushedAt":"2024-06-28T11:22:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx][libcxxabi] Fix build for OpenBSD (#92186)\n\n- No indirect syscalls on OpenBSD. Instead there is a `futex` function\nwhich issues a direct syscall.\n\n- Monotonic clock is available despite the full POSIX suite of timers\nnot being available in its entirety.\n\n See https://lists.boost.org/boost-bugs/2015/07/41690.php and\n https://github.com/boostorg/log/commit/c98b1f459add14d5ce3e9e63e2469064601d7f71\n for a description of an analogous problem and fix for Boost.\n\n(cherry picked from commit af7467ce9f447d6fe977b73db1f03a18d6bbd511)","shortMessageHtmlLink":"[libcxx][libcxxabi] Fix build for OpenBSD (llvm#92186)"}},{"before":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","after":"1118c2e05e67a36ed8ca250524525cdb66a55256","ref":"refs/heads/release/18.1.6","pushedAt":"2024-06-28T11:21:01.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx][libcxxabi] Fix build for OpenBSD (#92186)\n\n- No indirect syscalls on OpenBSD. Instead there is a `futex` function\nwhich issues a direct syscall.\n\n- Monotonic clock is available despite the full POSIX suite of timers\nnot being available in its entirety.\n\n See https://lists.boost.org/boost-bugs/2015/07/41690.php and\n https://github.com/boostorg/log/commit/c98b1f459add14d5ce3e9e63e2469064601d7f71\n for a description of an analogous problem and fix for Boost.\n\n(cherry picked from commit af7467ce9f447d6fe977b73db1f03a18d6bbd511)","shortMessageHtmlLink":"[libcxx][libcxxabi] Fix build for OpenBSD (llvm#92186)"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/release/18.1.6","pushedAt":"2024-06-28T11:16:15.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/release/18.x","pushedAt":"2024-06-28T11:15:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","after":null,"ref":"refs/heads/release/18.1.6","pushedAt":"2024-06-28T11:14:42.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","after":null,"ref":"refs/heads/Zilsd/release/18.x","pushedAt":"2024-06-28T11:14:13.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","after":null,"ref":"refs/heads/release/18.x","pushedAt":"2024-06-28T11:14:12.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/release/18.1.6","pushedAt":"2024-06-28T11:13:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/Zilsd/release/18.x","pushedAt":"2024-06-28T11:02:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/release/18.x","pushedAt":"2024-06-28T11:02:17.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","after":null,"ref":"refs/heads/release/18.1.6","pushedAt":"2024-06-28T11:01:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","after":null,"ref":"refs/heads/release/18.x","pushedAt":"2024-06-28T10:57:21.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/release/18.1.6","pushedAt":"2024-06-28T10:56:58.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":null,"after":"3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff","ref":"refs/heads/release/18.x","pushedAt":"2024-06-28T10:55:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[libcxx] Align `__recommend() + 1` by __endian_factor (#90292)\n\nThis is detected by asan after #83774\n\nAllocation size will be divided by `__endian_factor` before storing. If\nit's not aligned,\nwe will not be able to recover allocation size to pass into\n`__alloc_traits::deallocate`.\n\nwe have code like this\n```\n auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);\n __p = __allocation.ptr;\n __set_long_cap(__allocation.count);\n\nvoid __set_long_cap(size_type __s) _NOEXCEPT {\n __r_.first().__l.__cap_ = __s / __endian_factor;\n __r_.first().__l.__is_long_ = true;\n }\n\nsize_type __get_long_cap() const _NOEXCEPT {\n return __r_.first().__l.__cap_ * __endian_factor;\n }\n\ninline ~basic_string() {\n __annotate_delete();\n if (__is_long())\n __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());\n }\n```\n1. __recommend() -> even size\n2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not\neven size\n3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2\n(see `/ __endian_factor`)\n4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),\n__get_long_cap())` -> uses even size (see `__get_long_cap`)\n\n(cherry picked from commit d129ea8d2fa347e63deec0791faf389b84f20ce1)","shortMessageHtmlLink":"[libcxx] Align __recommend() + 1 by __endian_factor (llvm#90292)"}},{"before":"7947fefd67e354b69e7f6dcc3f69f22db589b97e","after":null,"ref":"refs/tags/release/18.1.6","pushedAt":"2024-06-28T10:52:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":"6009708b4367171ccdbf4b5905cb6a803753fe18","after":"6811df76fb09ba8380fddce77a0ffb64573c389d","ref":"refs/heads/Zilsd/release/17.x","pushedAt":"2024-05-20T07:46:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Zilsd Support for Release 17x","shortMessageHtmlLink":"Zilsd Support for Release 17x"}},{"before":"07f81926da6d27f9d2e00bc1500df696f2440897","after":"6009708b4367171ccdbf4b5905cb6a803753fe18","ref":"refs/heads/Zilsd/release/17.x","pushedAt":"2024-05-20T07:43:47.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Revert \"[runtimes] Add missing test dependencies to check-all (#72955)\"\n\nThis reverts commit e957e6dcb29d94e4e1678da9829b77009be88926.\n\nThe commit was reverted on main because of issues. We will not carry\nthis in the release branch for 17.x","shortMessageHtmlLink":"Revert \"[runtimes] Add missing test dependencies to check-all (llvm#7…"}},{"before":"6009708b4367171ccdbf4b5905cb6a803753fe18","after":"07f81926da6d27f9d2e00bc1500df696f2440897","ref":"refs/heads/Zilsd/release/17.x","pushedAt":"2024-05-17T14:45:04.000Z","pushType":"push","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":"93b6106e09742b9d8cc75490b60a5251fb14d2a6","after":"6009708b4367171ccdbf4b5905cb6a803753fe18","ref":"refs/heads/Zilsd/release/17.x","pushedAt":"2024-05-17T14:42:27.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Revert \"[runtimes] Add missing test dependencies to check-all (#72955)\"\n\nThis reverts commit e957e6dcb29d94e4e1678da9829b77009be88926.\n\nThe commit was reverted on main because of issues. We will not carry\nthis in the release branch for 17.x","shortMessageHtmlLink":"Revert \"[runtimes] Add missing test dependencies to check-all (llvm#7…"}},{"before":"6009708b4367171ccdbf4b5905cb6a803753fe18","after":"93b6106e09742b9d8cc75490b60a5251fb14d2a6","ref":"refs/heads/Zilsd/release/17.x","pushedAt":"2024-05-17T14:40:19.000Z","pushType":"push","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":null,"after":"6009708b4367171ccdbf4b5905cb6a803753fe18","ref":"refs/heads/Zilsd/release/17.x","pushedAt":"2024-05-15T09:47:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Revert \"[runtimes] Add missing test dependencies to check-all (#72955)\"\n\nThis reverts commit e957e6dcb29d94e4e1678da9829b77009be88926.\n\nThe commit was reverted on main because of issues. We will not carry\nthis in the release branch for 17.x","shortMessageHtmlLink":"Revert \"[runtimes] Add missing test dependencies to check-all (llvm#7…"}},{"before":null,"after":"6009708b4367171ccdbf4b5905cb6a803753fe18","ref":"refs/heads/release/17.x","pushedAt":"2024-05-15T09:41:26.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"Revert \"[runtimes] Add missing test dependencies to check-all (#72955)\"\n\nThis reverts commit e957e6dcb29d94e4e1678da9829b77009be88926.\n\nThe commit was reverted on main because of issues. We will not carry\nthis in the release branch for 17.x","shortMessageHtmlLink":"Revert \"[runtimes] Add missing test dependencies to check-all (llvm#7…"}},{"before":"afba3daf822c839db1be40464041307679c803a9","after":null,"ref":"refs/heads/release/17.x","pushedAt":"2024-05-15T09:33:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":null,"after":"afba3daf822c839db1be40464041307679c803a9","ref":"refs/heads/release/17.x","pushedAt":"2024-05-15T09:31:16.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[clang][Interp] Add basic support for AddrLabelExprs\n\nJust create a local variable for them.","shortMessageHtmlLink":"[clang][Interp] Add basic support for AddrLabelExprs"}},{"before":"afba3daf822c839db1be40464041307679c803a9","after":null,"ref":"refs/heads/release/17.x","pushedAt":"2024-05-15T09:30:35.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"}},{"before":null,"after":"afba3daf822c839db1be40464041307679c803a9","ref":"refs/heads/release/17.x","pushedAt":"2024-05-15T09:26:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"RuxandraBalucea","name":null,"path":"/RuxandraBalucea","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/167323930?s=80&v=4"},"commit":{"message":"[clang][Interp] Add basic support for AddrLabelExprs\n\nJust create a local variable for them.","shortMessageHtmlLink":"[clang][Interp] Add basic support for AddrLabelExprs"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEe6E-2wA","startCursor":null,"endCursor":null}},"title":"Activity · nxp-auto-tools/llvm-project"}