Skip to content
Snippets Groups Projects
Commit aa77c602 authored by Andreas Klebinger's avatar Andreas Klebinger Committed by Ben Gamari
Browse files

Also suppress uniques in cmm dumps with `-dsuppress-uniques`.

Allows easier structural comparison of Cmm code.

Before:
```
       cxCH: // global
           _suEU::P64 = R1;
           if ((Sp + -16) < SpLim) (likely: False) goto cxCI; else goto
cxCJ;
```

After
```
       _lbl_: // global
           __locVar_::P64 = R1;
           if ((Sp + -16) < SpLim) (likely: False) goto cxBf; else goto
cxBg;
```

Test Plan: Looking at dumps, ci

Reviewers: bgamari, simonmar

Reviewed By: bgamari

Subscribers: rwbarton, thomie, carter

Differential Revision: https://phabricator.haskell.org/D4786
parent 97cea315
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment