Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/migen
base: 5b36f688ea53
Choose a base ref
...
head repository: m-labs/migen
compare: 939f01cee2eb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 17, 2013

  1. fhdl/tools: BUGFIX: fix group_by_target grouping

    group_by_target does not properly combine target groups if statements
    are presented in the order:
    
     ({A}, statement1)
     ({B}, statement2)
     ({A, B}, statement3)
    
    which returns groups:
    
     ({A, B}, [statement1, statement3])
     ({B}, [statement2])
    
    This patch fixes group_by_target such that the resulting group is:
    
     ({A, B}, [statement1, statement2, statement3])
    davidcarne authored and Sebastien Bourdeauducq committed Jul 17, 2013
    Copy the full SHA
    16ebe41 View commit details
    Browse the repository at this point in the history
  2. fhdl/tools/group_by_target: remove resort_statements

    Sebastien Bourdeauducq committed Jul 17, 2013
    Copy the full SHA
    939f01c View commit details
    Browse the repository at this point in the history