[BACK]Return to divuir.c CVS log [TXT][DIR] Up to [local] / sys / arch / hppa / spmath

File: [local] / sys / arch / hppa / spmath / divuir.c (download)

Revision 1.1, Tue Mar 4 16:05:45 2008 UTC (16 years, 2 months ago) by nbrk
Branch point for: MAIN

Initial revision

/*	$OpenBSD: divuir.c,v 1.6 2002/05/07 22:19:30 mickey Exp $	*/
/*
  (c) Copyright 1986 HEWLETT-PACKARD COMPANY
  To anyone who acknowledges that this file is provided "AS IS"
  without any express or implied warranty:
      permission to use, copy, modify, and distribute this file
  for any purpose is hereby granted without fee, provided that
  the above copyright notice and this notice appears in all
  copies, and that the name of Hewlett-Packard Company not be
  used in advertising or publicity pertaining to distribution
  of the software without specific, written prior permission.
  Hewlett-Packard Company makes no representations about the
  suitability of this software for any purpose.
*/
/* @(#)divuir.c: Revision: 1.6.88.1 Date: 93/12/07 15:06:06 */

#include "md.h"

void
divuir(opnd1,opnd2,result)
	unsigned int opnd1, opnd2;
	struct mdsfu_register *result;
{
	/* get source operands, check divisor for zero */
	if (opnd2 == 0) {
		overflow = TRUE;
		return;
	}
	overflow = FALSE;

	/* do the divide */
	divu(0,opnd1,opnd2,result);
}