-
Notifications
You must be signed in to change notification settings - Fork 747
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[SYCL] Support
online_compiler::compile
compiled with pre-C…
…++11 ABI" (#16248) Reverts #16179 ``` template <source_language Lang> __SYCL_EXPORT std::vector<byte> online_compiler<Lang>::compile_impl( detail::string_view Src, detail::string_view DeviceStepping, const std::vector<detail::string_view> &Options) { ``` accesses `this->CompileToSPIRVHandle` which is laid out *after* `std::string` data member: ``` /// Target device stepping (implementation defined) std::string DeviceStepping; /// Handles to helper functions used by the implementation. void *CompileToSPIRVHandle = nullptr; ``` resulting in ABI incompatibility.
- Loading branch information
1 parent
705e8fe
commit 3f1aa18
Showing
5 changed files
with
38 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters