fpu.c (0337966d121ebebf73a1c346123e8112796e684e) | fpu.c (234a0538240caa05f12ec4ef7a573b173ab7ea57) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * Save/restore floating point context for signal handlers. 3 * 4 * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka 5 * | 2/* 3 * Save/restore floating point context for signal handlers. 4 * 5 * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka 6 * |
6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file "COPYING" in the main directory of this archive 8 * for more details. 9 * | |
10 * FIXME! These routines can be optimized in big endian case. 11 */ 12#include <linux/sched/signal.h> 13#include <linux/signal.h> 14#include <asm/processor.h> 15#include <asm/io.h> 16#include <asm/fpu.h> 17#include <asm/traps.h> --- 558 unchanged lines hidden --- | 7 * FIXME! These routines can be optimized in big endian case. 8 */ 9#include <linux/sched/signal.h> 10#include <linux/signal.h> 11#include <asm/processor.h> 12#include <asm/io.h> 13#include <asm/fpu.h> 14#include <asm/traps.h> --- 558 unchanged lines hidden --- |