mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
a3d91cd6a6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132409 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
336 B
C
20 lines
336 B
C
// RUN: %llvmgcc -S -march=armv7a %s
|
|
|
|
// XFAIL: *
|
|
// XTARGET: arm
|
|
|
|
typedef struct __simd128_uint16_t
|
|
{
|
|
__neon_uint16x8_t val;
|
|
} uint16x8_t;
|
|
|
|
void b(uint16x8_t sat, uint16x8_t luma)
|
|
{
|
|
__asm__("vmov.16 %1, %0 \n\t"
|
|
"vtrn.16 %0, %1 \n\t"
|
|
:"=w"(luma), "=w"(sat)
|
|
:"0"(luma)
|
|
);
|
|
|
|
}
|