You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix comma-separated llvm-args parsing in CodegenArgs::from_session
Previously, when multiple llvm-args were passed as comma-separated values
(e.g., `-C llvm-args=--disassemble-fn=foo,--allow-fragment-no-output`),
they were treated as a single argument instead of being properly split.
This change modifies CodegenArgs::from_session to:
- Split comma-separated llvm-args into individual arguments
- Preserve existing functionality for single arguments
- Enable proper parsing of multiple compiler flags
Fixes parameter processing for compound llvm-args usage in rust-gpu.
0 commit comments