diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-11-12 10:27:35 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-11-12 10:27:35 -0800 |
commit | 8665596ec05498525014436520b316ba174a068a (patch) | |
tree | 84b60a30d94e91f5a0f30160bdea6b68dcb86492 /arch/x86/kernel/entry_64.S | |
parent | 939b787130bf22887a09d8fd2641a094dcef8c22 (diff) | |
download | blackbird-obmc-linux-8665596ec05498525014436520b316ba174a068a.tar.gz blackbird-obmc-linux-8665596ec05498525014436520b316ba174a068a.zip |
x86: fix up the new IRQ code for older versions of gas
Older versions of gas don't implement the C-style != operator, they
instead want the Pascal-style <> operator. Change != to <> so we
don't break compilation with those old versions of gas.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/entry_64.S')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index 9b2aeaac9a6b..2b42362a85b2 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S @@ -644,12 +644,12 @@ vector=FIRST_EXTERNAL_VECTOR .balign 32 .rept 7 .if vector < NR_VECTORS - .if vector != FIRST_EXTERNAL_VECTOR + .if vector <> FIRST_EXTERNAL_VECTOR CFI_ADJUST_CFA_OFFSET -8 .endif 1: pushq $(~vector+0x80) /* Note: always in signed byte range */ CFI_ADJUST_CFA_OFFSET 8 - .if ((vector-FIRST_EXTERNAL_VECTOR)%7) != 6 + .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6 jmp 2f .endif .previous |