Details
Details
- Reviewers
abhina.sreeskantharajan skan craig.topper
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
will it work for your issue in ppc64? do we have other buildfail @abhina.sreeskantharajan
Comment Actions
This doesn't seem like the right way to fix this. The issue is that it's complaining about --ignore-initial not being supported. I don't think checking the target is the right way to check for that. Wy do we need to skip the first 568 lines?
Comment Actions
the first 568 bytes are:
/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ |* *| |* X86 fold tables *| |* *| |* Automatically generated file, do not edit! *| |* *| \*===----------------------------------------------------------------------===*/
Comment Actions
Agree with craig. There are also some inc files that do not have comment TableGen'erated file in LLVM. (grep -r -L "TableGen'erated" --include=\*.inc)
I think we can remove emitSourceFileHeader("X86 fold tables", OS); and --ignore-initial=0:568 to fix this issue.