diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-11-06 18:12:45 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-11-06 18:12:45 +0000 |
commit | 855a44ee8f73b4c53a0bad7780baa85d043b890f (patch) | |
tree | 6c400558efbf8a6da2a288d4c1fa498c441915d2 /gcc/go | |
parent | d1a0e5330928f46c87640116401f00d0edc623b2 (diff) | |
download | gcc-855a44ee8f73b4c53a0bad7780baa85d043b890f.zip gcc-855a44ee8f73b4c53a0bad7780baa85d043b890f.tar.gz gcc-855a44ee8f73b4c53a0bad7780baa85d043b890f.tar.bz2 |
compiler, runtime: Memcmp routine returns intgo.
From-SVN: r193253
Diffstat (limited to 'gcc/go')
-rw-r--r-- | gcc/go/gofrontend/runtime.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/runtime.def b/gcc/go/gofrontend/runtime.def index fc720cd..d689533 100644 --- a/gcc/go/gofrontend/runtime.def +++ b/gcc/go/gofrontend/runtime.def @@ -29,7 +29,7 @@ // result types. // The standard C memcmp function, used for struct comparisons. -DEF_GO_RUNTIME(MEMCMP, "memcmp", P3(POINTER, POINTER, UINTPTR), R1(INT)) +DEF_GO_RUNTIME(MEMCMP, "__go_memcmp", P3(POINTER, POINTER, UINTPTR), R1(INT)) // Range over a string, returning the next index. DEF_GO_RUNTIME(STRINGITER, "runtime.stringiter", P2(STRING, INT), R1(INT)) |