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.
30 lines
977 B
30 lines
977 B
// RUN: %clang_cc1 -triple i386-unknown-unknown -fasm-blocks -fsyntax-only -verify %s -DCHECK_ASM_GOTO
|
|
// RUN: %clang_cc1 -triple i386-unknown-unknown -fasm-blocks -O0 -emit-llvm -S %s -o - | FileCheck %s
|
|
// REQUIRES: x86-registered-target
|
|
|
|
void f() {
|
|
__asm mov eax, ebx
|
|
__asm mov ebx, ecx
|
|
__asm__("movl %ecx, %edx");
|
|
// CHECK: movl %ebx, %eax
|
|
// CHECK: movl %ecx, %ebx
|
|
// CHECK: movl %ecx, %edx
|
|
|
|
__asm mov eax, ebx
|
|
__asm volatile ("movl %ecx, %edx");
|
|
// CHECK: movl %ebx, %eax
|
|
// CHECK: movl %ecx, %edx
|
|
|
|
__asm mov eax, ebx
|
|
__asm const ("movl %ecx, %edx"); // expected-warning {{ignored const qualifier on asm}}
|
|
// CHECK: movl %ebx, %eax
|
|
// CHECK: movl %ecx, %edx
|
|
|
|
#ifdef CHECK_ASM_GOTO
|
|
__asm volatile goto ("movl %ecx, %edx"); // expected-error {{'asm goto' constructs are not supported yet}}
|
|
|
|
__asm mov eax, ebx
|
|
__asm goto ("movl %ecx, %edx"); // expected-error {{'asm goto' constructs are not supported yet}}
|
|
#endif
|
|
}
|