This is an archive of the discontinued LLVM Phabricator instance.

[AMDGPU] Disassembler: print label names in branch instructions
ClosedPublic

Authored by SamWot on Sep 21 2016, 8:24 AM.

Diff Detail

Repository
rL LLVM

Event Timeline

SamWot updated this revision to Diff 72049.Sep 21 2016, 8:24 AM
SamWot retitled this revision from to [AMDGPU] Disassembler: print label names in branch instructions.
SamWot updated this object.
SamWot added reviewers: vpykhtin, artem.tamazov.
SamWot edited edge metadata.Sep 21 2016, 8:24 AM
SamWot added a subscriber: Restricted Project.
artem.tamazov accepted this revision.Sep 21 2016, 9:51 AM
artem.tamazov edited edge metadata.

Good, thanks.

This revision is now accepted and ready to land.Sep 21 2016, 9:51 AM
vpykhtin accepted this revision.Sep 23 2016, 9:36 AM
vpykhtin edited edge metadata.

LGTM.

This revision was automatically updated to reflect the committed changes.
SamWot reopened this revision.Sep 30 2016, 4:51 AM

Change was reverted due to bug found by buildbot.

This revision is now accepted and ready to land.Sep 30 2016, 4:51 AM
SamWot updated this revision to Diff 73036.Sep 30 2016, 4:52 AM
SamWot edited edge metadata.

MCContext was trying to read uninitialized variable (MCObjectFileInfo *) in createSymbolImpl().
I fixed this by setting MCObjectFileInfo * to nullptr. In that case createSymbolImpl() does not try to read this variable and no problems occur.

SamWot updated this revision to Diff 73757.Oct 6 2016, 4:00 AM
SamWot edited edge metadata.

Initialize MCObjectFileInfo with some default values instead of nullptr.

This revision was automatically updated to reflect the committed changes.