* tree-vect-loop-manip.c (vect_do_peeling): Do not use
[official-gcc.git] / libgo / misc / cgo / test / issue20369.go
blob37b4b78dfe173a126eee4ee3880d57e073fc0a63
1 // Copyright 2017 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package cgotest
7 /*
8 #define UINT64_MAX 18446744073709551615ULL
9 */
10 import "C"
11 import (
12 "math"
13 "testing"
16 func test20369(t *testing.T) {
17 if C.UINT64_MAX != math.MaxUint64 {
18 t.Fatalf("got %v, want %v", uint64(C.UINT64_MAX), uint64(math.MaxUint64))