Fixed
Status Update
Comments
sp...@google.com <sp...@google.com>
je...@google.com <je...@google.com>
cm...@google.com <cm...@google.com>
ub...@gmail.com <ub...@gmail.com> #2
download_sdk.py requires a python module called colorama which I don't have on my mac. Is there a recommended way to get it for naclports?
ml...@google.com <ml...@google.com> #3
gclient should install it during runhooks.
ml...@google.com <ml...@google.com> #4
Oh.. and run it with build_tools/python_wrapper to get those modules.
ub...@gmail.com <ub...@gmail.com> #5
[Empty comment from Monorail migration]
ml...@google.com <ml...@google.com> #6
This bug seems to be a problem with the inliner. In this trace seems to be inlining ~basic_string into ~basic_stringstream; in my repro it's a the same verifier failure but with different functions. It looks like the inliner is failing to update (or create) the inlinedAt field in the MDLocation metadata. The verifier starts with the original MDSubprogram (first output line), finds the function it describes (second output, the function prototye) checks each instruction in that function (3rd output, the load instruction) and follows the chain from its !dbg attachment (4th-6th outputs) lead back to an MDSubprogram describing the same function. Here they don't match.
an...@google.com <an...@google.com> #7
Here's a bugpoint-reduced version of the testcase. bugpoint made the code pretty small but apparently it doesn't know how to remove debug info.
Description