mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-15 14:06:09 +00:00

refining tested targets resolution, to amend failures caused by rL299454 llvm-svn: 299459
17 lines
297 B
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
|
|
}
|
|
}
|