quic-garvgupt wrote:

`ToolChain::UnwindLibType ToolChain::GetUnwindLibType(
    const ArgList &Args) const {
  if (unwindLibType)
    return *unwindLibType;

  const Arg *A = Args.getLastArg(options::OPT_unwindlib_EQ);
  StringRef LibName = A ? A->getValue() : CLANG_DEFAULT_UNWINDLIB;`
  
  
 
 If --unwindlib= is not set to empty explicitly, then `CLANG_DEFAULT_UNWINDLIB` 
overrides. I think, adding `--unwindlib=`, might fix the tests.

https://github.com/llvm/llvm-project/pull/144582
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to