code: 9ferno

ref: c8fd1b0926d1bbfae1ddbafbcbc88888052300f5
dir: /libmp/port/mpfield.c/

View raw version
#include "os.h"
#include "../include/mp.h"
#include "dat.h"

mpint*
mpfield(mpint *N)
{
	Mfield *f;

	if(N == nil || N->flags & (MPfield|MPstatic))
		return N;
	if((f = cnfield(N)) != nil)
		goto Exchange;
	if((f = gmfield(N)) != nil)
		goto Exchange;
	return N;
Exchange:
	setmalloctag(f, getcallerpc(&N));
	mpfree(N);
	return f;
}