From e838334beb38c20d2b4035b53ec4e3e3487844f9 Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Mon, 12 Aug 2013 13:47:18 -0700 Subject: runtime: change textflags from numbers to symbols R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12798043 --- src/pkg/runtime/alg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pkg/runtime/alg.c') diff --git a/src/pkg/runtime/alg.c b/src/pkg/runtime/alg.c index a78d9780c7..8fefec0990 100644 --- a/src/pkg/runtime/alg.c +++ b/src/pkg/runtime/alg.c @@ -4,6 +4,7 @@ #include "runtime.h" #include "type.h" +#include "../../cmd/ld/textflag.h" #define M0 (sizeof(uintptr)==4 ? 2860486313UL : 33054211828000289ULL) #define M1 (sizeof(uintptr)==4 ? 3267000013UL : 23344194077549503ULL) @@ -499,7 +500,7 @@ runtime·hashinit(void) } // func equal(t *Type, x T, y T) (ret bool) -#pragma textflag 7 +#pragma textflag NOSPLIT void runtime·equal(Type *t, ...) { -- cgit v1.3-5-g9baa