/* * peep.c — peephole pass. Currently a no-op; reserved for the kind of * cleanup Plan 9 6c does (folding adjacent moves, removing redundant * compares). Wire in `peephole(c)` from cgen.c after the main walk. */ #include "gc.h" void peep_run(Cg *c) { (void)c; }