1
0
mirror of https://github.com/golang/go synced 2024-11-25 21:47:59 -07:00

cmd/ld: trivial: fix unhandled switch case

Fix warning found by clang 3.3.

R=rsc, r
CC=golang-dev
https://golang.org/cl/11022043
This commit is contained in:
Dave Cheney 2013-07-08 21:14:32 -05:00
parent e23d19e235
commit 328ec95878

View File

@ -665,6 +665,9 @@ hostlink(void)
case '6': case '6':
argv[argc++] = "-m64"; argv[argc++] = "-m64";
break; break;
case '5':
// nothing required for arm
break;
} }
if(!debug['s'] && !debug_s) { if(!debug['s'] && !debug_s) {
argv[argc++] = "-gdwarf-2"; argv[argc++] = "-gdwarf-2";