Fix abi.cpp indentation
This commit is contained in:
parent
e084b48fd3
commit
b267f09ea4
1 changed files with 7 additions and 7 deletions
|
|
@ -3,17 +3,17 @@
|
|||
namespace pslang::jit
|
||||
{
|
||||
|
||||
abi host_abi()
|
||||
{
|
||||
abi host_abi()
|
||||
{
|
||||
#if defined(__x86_64__)
|
||||
return abi::itanium;
|
||||
return abi::itanium;
|
||||
#elif defined(__ARM64_ARCH_8__)
|
||||
return abi::armv8;
|
||||
return abi::armv8;
|
||||
#elif defined(_M_AMD64)
|
||||
return abi::msvs;
|
||||
return abi::msvs;
|
||||
#else
|
||||
#error Unknown host ABI
|
||||
#error Unknown host ABI
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue