Nirav Dave | 6c0665e | 2018-04-30 19:22:40 +0000 | [diff] [blame] | 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 | |||||
7 | foo: | ||||
8 | .if . - foo == 0 | ||||
9 | .byte 0xaa | ||||
10 | .else | ||||
11 | .byte 0x00 | ||||
12 | .endif |