mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
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)
|
||
|
);
|
||
|
|
||
|
}
|