* g++.dg/pph/c120060625-1.cc: New.
[official-gcc.git] / libgo / runtime / go-interface-compare.c
blob11c75e812ce5517526f104c6aff3c8902f66d79f
1 /* go-interface-compare.c -- compare two interface values.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include "interface.h"
9 /* Compare two interface values. Return 0 for equal, not zero for not
10 equal (return value is like strcmp). */
12 int
13 __go_interface_compare (struct __go_interface left,
14 struct __go_interface right)
16 const struct __go_type_descriptor *left_descriptor;
18 if (left.__methods == NULL && right.__methods == NULL)
19 return 0;
20 if (left.__methods == NULL || right.__methods == NULL)
21 return 1;
22 left_descriptor = left.__methods[0];
23 if (!__go_type_descriptors_equal (left_descriptor, right.__methods[0]))
24 return 1;
25 if (__go_is_pointer_type (left_descriptor))
26 return left.__object == right.__object ? 0 : 1;
27 if (!left_descriptor->__equalfn (left.__object, right.__object,
28 left_descriptor->__size))
29 return 1;
30 return 0;