Message ID | 1411140580-20909-3-git-send-email-jeffrey.t.kirsher@intel.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
diff --git a/arch/x86/ia32/syscall_ia32.c b/arch/x86/ia32/syscall_ia32.c index 4754ba0..7bc553b 100644 --- a/arch/x86/ia32/syscall_ia32.c +++ b/arch/x86/ia32/syscall_ia32.c @@ -15,6 +15,7 @@ typedef void (*sys_call_ptr_t)(void); extern void compat_ni_syscall(void); +DIAG_PUSH DIAG_CLANG_IGNORE(initializer-overrides) const sys_call_ptr_t ia32_sys_call_table[__NR_ia32_syscall_max+1] = { /* * Smells like a compiler bug -- it doesn't work @@ -23,3 +24,4 @@ const sys_call_ptr_t ia32_sys_call_table[__NR_ia32_syscall_max+1] = { [0 ... __NR_ia32_syscall_max] = &compat_ni_syscall, #include <asm/syscalls_32.h> }; +DIAG_POP