• Kevin Modzelewski's avatar
    Fix cfg bug if for loops never exit normally · 47be9879
    Kevin Modzelewski authored
    ex:
    
    for i in xrange(5):
        pass
    else:
        return 2
    "unreachable here!"
    
    We didn't prune the "unreachable here" line, which caused
    some issues.  I guess we could also support compiling
    trivially-unreachable blocks.
    47be9879
cfg.cpp 90.9 KB