diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2018-08-21 13:37:57 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-08-21 15:57:58 +0200 |
commit | 4ec84835900b6eceb5b49f9ffeec9a0916ba43d6 (patch) | |
tree | 1cabf1dd6c2bfb4161808ea5204d77c09fad2537 /arch | |
parent | 3d8f60d38e249f989a7fca9c2370c31c3d5487e1 (diff) | |
download | linux-stable-4ec84835900b6eceb5b49f9ffeec9a0916ba43d6.tar.gz linux-stable-4ec84835900b6eceb5b49f9ffeec9a0916ba43d6.tar.bz2 linux-stable-4ec84835900b6eceb5b49f9ffeec9a0916ba43d6.zip |
s390: remove gcc version check (4.3 or newer)
git commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6")
raised the minimum gcc version to 4.6. Therefore remove the s390 specific
gcc 4.3 version check, which wasn't sufficient anyway.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/s390/kernel/asm-offsets.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/s390/kernel/asm-offsets.c b/arch/s390/kernel/asm-offsets.c index 11aea745a2a6..66e830f1c7bf 100644 --- a/arch/s390/kernel/asm-offsets.c +++ b/arch/s390/kernel/asm-offsets.c @@ -17,14 +17,6 @@ #include <asm/gmap.h> #include <asm/nmi.h> -/* - * Make sure that the compiler is new enough. We want a compiler that - * is known to work with the "Q" assembler constraint. - */ -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) -#error Your compiler is too old; please use version 4.3 or newer -#endif - int main(void) { /* task struct offsets */ |