mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
3dfe644f7b
convert instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192231 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
899 B
ArmAsm
24 lines
899 B
ArmAsm
// RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+neon -show-encoding < %s | FileCheck %s
|
|
|
|
// Check that the assembler can handle the documented syntax for AArch64
|
|
|
|
//----------------------------------------------------------------------
|
|
// Scalar Signed Integer Convert To Floating-point
|
|
//----------------------------------------------------------------------
|
|
|
|
scvtf s22, s13
|
|
scvtf d21, d12
|
|
|
|
// CHECK: scvtf s22, s13 // encoding: [0xb6,0xd9,0x21,0x5e]
|
|
// CHECK: scvtf d21, d12 // encoding: [0x95,0xd9,0x61,0x5e]
|
|
|
|
//----------------------------------------------------------------------
|
|
// Scalar Unsigned Integer Convert To Floating-point
|
|
//----------------------------------------------------------------------
|
|
|
|
ucvtf s22, s13
|
|
ucvtf d21, d14
|
|
|
|
// CHECK: ucvtf s22, s13 // encoding: [0xb6,0xd9,0x21,0x7e]
|
|
// CHECK: ucvtf d21, d14 // encoding: [0xd5,0xd9,0x61,0x7e]
|