freebsd_amp_hwpstate/test/CodeGen/ms-inline-asm-EVEN.c

17 lines
297 B
C

// REQUIRES: x86-registered-target
// RUN: %clang_cc1 %s -triple i386-apple-darwin10 -fasm-blocks -emit-llvm -o - | FileCheck %s
// CHECK: .byte 64
// CHECK: .byte 64
// CHECK: .byte 64
// CHECK: .even
void t1() {
__asm {
.byte 64
.byte 64
.byte 64
EVEN
mov eax, ebx
}
}