mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 00:17:32 +00:00
Adding target specific calling conventions to support the MBlaze GCC function
attributes "interrupt_handle" and "save_volatiles". Support for lowering these correctly will be in an upcoming commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121888 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
243712720a
commit
d364acd3d7
@ -87,7 +87,14 @@ namespace CallingConv {
|
||||
|
||||
/// PTX_Device - Call to a PTX device function.
|
||||
/// Passes all arguments in register or parameter space.
|
||||
PTX_Device = 72
|
||||
PTX_Device = 72,
|
||||
|
||||
/// MBLAZE_INTR - Calling convention used for MBlaze interrupt routines.
|
||||
MBLAZE_INTR = 73,
|
||||
|
||||
/// MBLAZE_INTR - Calling convention used for MBlaze interrupt support
|
||||
/// routines (i.e. GCC's save_volatiles attribute).
|
||||
MBLAZE_SVOL = 74
|
||||
};
|
||||
} // End CallingConv namespace
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user