forked from OSchip/llvm-project
10 lines
321 B
ArmAsm
10 lines
321 B
ArmAsm
// RUN: not llvm-mc -filetype=obj -triple i386-pc-win32 %s 2>&1 | FileCheck %s
|
|
|
|
// CHECK: symbol '__ImageBase' can not be undefined in a subtraction expression
|
|
// CHECK: symbol '__ImageBase' can not be undefined in a subtraction expression
|
|
|
|
.data
|
|
_x:
|
|
.long _x-__ImageBase
|
|
.long __ImageBase-_x
|