[PATCH] D32745: Correct debug info bit offset calculation for big-endian targets

2017-06-07 Thread Frej Drejhammar via Phabricator via cfe-commits
frej added a comment. Ping, I don't have have commit permissions, so I am at the mercy of others for getting this fix committed... https://reviews.llvm.org/D32745 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin

[PATCH] D32745: Correct debug info bit offset calculation for big-endian targets

2017-05-02 Thread Frej Drejhammar via Phabricator via cfe-commits
frej created this revision. Herald added subscribers: arichardson, aprantl. The change "[CodeView] Implement support for bit fields in Clang" (r274201, https://reviews.llvm.org/rL274201) broke the calculation of bit offsets for the debug info describing bitfields on big-endian targets. Prior to c

[PATCH] D32745: Correct debug info bit offset calculation for big-endian targets

2017-05-02 Thread Frej Drejhammar via Phabricator via cfe-commits
frej updated this revision to Diff 97544. frej added a comment. Added missing "REQUIRES: mips-registered-target". https://reviews.llvm.org/D32745 Files: clang/lib/CodeGen/CGDebugInfo.cpp clang/test/CodeGen/mips-debug-info-bitfield.c Index: clang/test/CodeGen/mips-debug-info-bitfield.c ===

[PATCH] D32745: Correct debug info bit offset calculation for big-endian targets

2017-05-02 Thread Frej Drejhammar via Phabricator via cfe-commits
frej added a comment. In https://reviews.llvm.org/D32745#744280, @rnk wrote: > The REQUIRES tag is unnecessary. Clang can emit IR for any target without a > registered backed. So should I drop it? It doesn't hurt does it? https://reviews.llvm.org/D32745 ___

[PATCH] D32745: Correct debug info bit offset calculation for big-endian targets

2017-05-03 Thread Frej Drejhammar via Phabricator via cfe-commits
frej updated this revision to Diff 97773. frej added a comment. Removed 'REQUIRES'-line. https://reviews.llvm.org/D32745 Files: clang/lib/CodeGen/CGDebugInfo.cpp clang/test/CodeGen/mips-debug-info-bitfield.c Index: clang/test/CodeGen/mips-debug-info-bitfield.c