Commit 568f50e3 authored by Dave Cheney's avatar Dave Cheney

cmd/gc: fix build

Darwin 10.6 (gcc 4.2) and some older versions of gcc default to C90 mode, not C99 mode. Silence the warning.

LGTM=aram, iant
R=golang-codereviews, aram, iant
CC=golang-codereviews
https://golang.org/cl/83090050
parent 7d299d03
......@@ -1633,8 +1633,8 @@ livenessepilogue(Liveness *lv)
}
// FNV-1 hash function constants.
#define H0 2166136261
#define Hp 16777619
#define H0 2166136261UL
#define Hp 16777619UL
static uint32
hashbitmap(uint32 h, Bvec *bv)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment