You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
582 B
32 lines
582 B
// RUN: llvm-mc -triple x86_64-unknown-unknown -x86-asm-syntax=att %s | FileCheck %s
|
|
|
|
.intel_syntax
|
|
_test:
|
|
// CHECK: movl $257, -4(%rsp)
|
|
mov DWORD PTR [RSP - 4], 257
|
|
.att_syntax
|
|
// CHECK: movl $257, -4(%rsp)
|
|
movl $257, -4(%rsp)
|
|
|
|
_test2:
|
|
.intel_syntax noprefix
|
|
mov DWORD PTR [RSP - 4], 255
|
|
// CHECK: movl $255, -4(%rsp)
|
|
.att_syntax prefix
|
|
movl $255, -4(%rsp)
|
|
// CHECK: movl $255, -4(%rsp)
|
|
|
|
_test3:
|
|
fadd
|
|
// CHECK: faddp %st(1)
|
|
fmul
|
|
// CHECK: fmulp %st(1)
|
|
fsub
|
|
// CHECK: fsubp %st(1)
|
|
fsubr
|
|
// CHECK: fsubrp %st(1)
|
|
fdiv
|
|
// CHECK: fdivp %st(1)
|
|
fdivr
|
|
// CHECK: fdivrp %st(1)
|