Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:44:26

0001 /*===- llvm/Support/Solaris/sys/regset.h ------------------------*- C++ -*-===*
0002  *
0003  * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004  * See https://llvm.org/LICENSE.txt for license information.
0005  * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006  *
0007  *===----------------------------------------------------------------------===*
0008  *
0009  * This file works around excessive name space pollution from the system header
0010  * on Solaris hosts.
0011  *
0012  *===----------------------------------------------------------------------===*/
0013 
0014 #ifndef LLVM_SUPPORT_SOLARIS_SYS_REGSET_H
0015 
0016 #include_next <sys/regset.h>
0017 
0018 #undef CS
0019 #undef DS
0020 #undef ES
0021 #undef FS
0022 #undef GS
0023 #undef SS
0024 #undef EAX
0025 #undef ECX
0026 #undef EDX
0027 #undef EBX
0028 #undef ESP
0029 #undef EBP
0030 #undef ESI
0031 #undef EDI
0032 #undef EIP
0033 #undef UESP
0034 #undef EFL
0035 #undef ERR
0036 #undef TRAPNO
0037 
0038 #endif