1 // RUN: not llvm-mc -filetype=obj -triple x86_64-pc-win32 %s -o /dev/null 2>&1 | FileCheck %s 2 3 4 // CHECK: [[@LINE+1]]:{{[0-9]+}}: error: Cannot represent this expression 5 .byte foo - . 6 7 // CHECK: [[@LINE+1]]:{{[0-9]+}}: error: Cannot represent this expression 8 .short foo - . 9 10 // CHECK: [[@LINE+1]]:{{[0-9]+}}: error: Cannot represent this expression 11 .quad foo - . 12 13