/* * swt.c — switch-statement lowering. Stub for now: cgen falls * through to a no-op for N_SWITCH. When we add a real lowering, it * will live here, mirroring Plan 9 6c's pswt.c. */ #include "gc.h" void swt_lower(Cg *c, Node *n) { (void)c; (void)n; }