On Tue, Sep 25, 2012 at 9:12 PM, Matthew Gretton-Dann <matthew.gretton-d...@linaro.org> wrote: >> No, I mean using the onlyjump_p predicate. > > Again sorry for the delay. Attached is an updated patch using the onlyjump_p > predicate as suggested by Steven.
+ if (onlyjump_p (BB_END (pred->src))) Eh, don't you want (!onlyjump_p (BB_END (pred->src))) ? Note the "not". You also have to deal with non-jump BB_END insns. Ciao! Steven