.debug_frame is not emitted on AIX, so this patch disables the test.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
I think we are using trace table on AIX instead of .debug_frame/.eh_frame . So marking .debug_frame as not emitted on AIX should be right? @xingxue @hubert.reinterpretcast
Yeah, we defined this section, but we will not generate this section now. For the changed test, llc on AIX will not generate .dwframe section for it. And commercial XLC on AIX will also not generate this section.
Do you know will this section be supported in the future? If so, we can just make this case XFAIL.
But if there is no plan to support .dwframe section, we can just mark it as not emit like this patch does?
Do you know will this section be supported in the future? If so, we can just make this case XFAIL.
But if there is no plan to support .dwframe section, we can just mark it as not emit like this patch does?
OK to not emit for now. We can change back once we start to emit it.