Forgot to add testcase for r198590

llvm-svn: 199765
This commit is contained in:
David Majnemer 2014-01-21 20:39:11 +00:00
parent b9a5f2d3b6
commit 8340592894
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// 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
.data
_x:
.long _x-__ImageBase

View File

@ -0,0 +1,8 @@
// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o /dev/null 2>%t
// RUN: FileCheck --input-file=%t %s
// CHECK: symbol '__executable_start' can not be undefined in a subtraction expression
.data
x:
.quad x-__executable_start