Clang Project

clang_source_code/test/CodeGen/asm-parser-info.S
1// REQUIRES: x86-registered-target
2// RUN: %clang --target=x86_64-unknown-linux-gnu -c %s -o /dev/null
3
4// Check that cc1as can use assembler info in object generation.
5.data
6
7foo:
8.if . - foo == 0
9    .byte 0xaa
10.else
11    .byte 0x00
12.endif
13