aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-memcmp.c
AgeCommit message (Collapse)AuthorFilesLines
2019-06-24compiler: use builtin memcmp directlyIan Lance Taylor1-13/+0
Instead of going through a C function __go_memcmp, we can just use __builtin_memcmp directly. This allows more optimizations in the compiler backend. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/183537 From-SVN: r272620
2012-11-06compiler, runtime: Memcmp routine returns intgo.Ian Lance Taylor1-0/+13
From-SVN: r193253