1// RUN: not llvm-mc -filetype=obj -triple i386-pc-win32 %s 2>&1 | FileCheck %s
2
3// CHECK: symbol '__ImageBase' can not be undefined in a subtraction expression
4
5        .data
6_x:
7        .long   _x-__ImageBase
8