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// CHECK: symbol '__ImageBase' can not be undefined in a subtraction expression 5 6 .data 7_x: 8 .long _x-__ImageBase 9 .long __ImageBase-_x 10