diff options
Diffstat (limited to 'llvm/test/MC/COFF/bss-text.s')
-rw-r--r-- | llvm/test/MC/COFF/bss-text.s | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/test/MC/COFF/bss-text.s b/llvm/test/MC/COFF/bss-text.s index ed68905..cedbb2f 100644 --- a/llvm/test/MC/COFF/bss-text.s +++ b/llvm/test/MC/COFF/bss-text.s @@ -1,13 +1,15 @@ -# RUN: not llvm-mc -filetype=obj -triple=x86_64-pc-win32 %s -o /dev/null 2>&1 | FileCheck %s +# RUN: not llvm-mc -filetype=obj -triple=x86_64-pc-win32 %s -o /dev/null 2>&1 | FileCheck %s --implicit-check-not=error: ## -filetype=asm does not check the error. # RUN: llvm-mc -triple=x86_64-pc-win32 %s +.bss +# CHECK: <unknown>:0: error: BSS section '.bss' cannot have non-zero bytes + addb %bl,(%rax) + .section uninitialized,"b" -# MCRelaxableFragment -# CHECK: {{.*}}.s:[[#@LINE+1]]:3: error: IMAGE_SCN_CNT_UNINITIALIZED_DATA section 'uninitialized' cannot have instructions +# CHECK: <unknown>:0: error: BSS section 'uninitialized' cannot have non-zero bytes jmp foo -.bss -# CHECK: {{.*}}.s:[[#@LINE+1]]:3: error: IMAGE_SCN_CNT_UNINITIALIZED_DATA section '.bss' cannot have instructions +.section bss0,"b" addb %al,(%rax) |