This is an archive of the discontinued LLVM Phabricator instance.

[Transforms/Utils] New -instanonymizer pass
AbandonedPublic

Authored by tpr on Oct 23 2018, 9:25 AM.

Details

Reviewers
mgorny
chandlerc
Summary

By analogy with -instnamer, this is a little utility pass that removes
names from instructions. This is useful when building a library of bc
files where the toolchain using the library is sensitive to compile
time.

Change-Id: Ib66708c049a2725aa582849a59cb2044dab87e2f

Diff Detail

Event Timeline

tpr created this revision.Oct 23 2018, 9:25 AM

Hi Michał and Chandler. I wasn't sure who to add as reviewers for this. If you can think of anyone more appropriate, please add them. Thanks.

arsenm added a subscriber: arsenm.Oct 23 2018, 11:43 AM

How is this different from -strip?

tpr abandoned this revision.Oct 23 2018, 1:20 PM

D'oh!

-strip actually does more, but will be fine for the application I need it for.

Thanks for pointing it out Matt.