[PATCH] D56587: Fix sign/zero extension in Dwarf expressions.
Markus Lavin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 28 07:40:03 PST 2019
markus marked an inline comment as done.
markus added inline comments.
================
Comment at: lib/Transforms/Utils/Local.cpp:1896
+ }
+ for (unsigned I = 0, E = ExtFEBitSize/BitsPerByte; I < E; ++I) {
+ Instruction &ExtDII = *DII.clone();
----------------
Unfortunately I run into problems when I try having arbitrarily sized fragments ( https://bugs.llvm.org/show_bug.cgi?id=40462 ) so I have to make them byte sized here which produces quite a lot of them ...
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56587/new/
https://reviews.llvm.org/D56587
More information about the llvm-commits
mailing list