1# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o /dev/null 2# RUN: not llvm-mc -filetype=obj -triple=x86_64 --defsym GAP=1 %s -o /dev/null 2>&1 | FileCheck %s 3 4fct_end: 5 6.fill (data_start - fct_end), 1, 42 7.ifdef GAP 8.byte 0 9.endif 10# CHECK: [[#@LINE+1]]:7: error: invalid number of bytes 11.fill (fct_end - data_start), 1, 42 12 13data_start: 14