diff options
author | Andreas Färber <andreas.faerber@web.de> | 2011-03-07 01:34:04 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-03-21 21:46:05 +0100 |
commit | 8d725fac63c31562cdc25e332634a6583ca7b9b5 (patch) | |
tree | 9322da186be673ddf6f736f0a65fa075463a7bc2 /fpu | |
parent | 735e77ecb14355df35c9dbb727f3bc76d730b651 (diff) |
softfloat: Prepend QEMU-style header with derivation notice
The SoftFloat license requires "prominent notice that the work
is derivative". Having added features like improved 16-bit support
for arm already, add such a notice to the sources.
softfloat-native.[ch] are not under the SoftFloat license
and thus are not changed.
Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'fpu')
-rw-r--r-- | fpu/softfloat-macros.h | 5 | ||||
-rw-r--r-- | fpu/softfloat-specialize.h | 5 | ||||
-rw-r--r-- | fpu/softfloat.c | 5 | ||||
-rw-r--r-- | fpu/softfloat.h | 6 |
4 files changed, 21 insertions, 0 deletions
diff --git a/fpu/softfloat-macros.h b/fpu/softfloat-macros.h index 783822820..54c0bad2a 100644 --- a/fpu/softfloat-macros.h +++ b/fpu/softfloat-macros.h @@ -1,3 +1,8 @@ +/* + * QEMU float support macros + * + * Derived from SoftFloat. + */ /*============================================================================ diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h index adc5adad6..4add93c9c 100644 --- a/fpu/softfloat-specialize.h +++ b/fpu/softfloat-specialize.h @@ -1,3 +1,8 @@ +/* + * QEMU float support + * + * Derived from SoftFloat. + */ /*============================================================================ diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 30b07e9b4..e800daa01 100644 --- a/fpu/softfloat.c +++ b/fpu/softfloat.c @@ -1,3 +1,8 @@ +/* + * QEMU float support + * + * Derived from SoftFloat. + */ /*============================================================================ diff --git a/fpu/softfloat.h b/fpu/softfloat.h index fd61dc4b2..9e1072745 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -1,3 +1,9 @@ +/* + * QEMU float support + * + * Derived from SoftFloat. + */ + /*============================================================================ This C header file is part of the SoftFloat IEC/IEEE Floating-point Arithmetic |