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:
parent
e23d19e235
commit
328ec95878
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user