You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
407 B
13 lines
407 B
7 months ago
|
# RUN: not llvm-mc -triple=x86_64 %s -o /dev/null 2>&1 | FileCheck %s --implicit-check-not=error:
|
||
|
|
||
|
foo:
|
||
|
.section .foo,"ax",@progbits
|
||
|
|
||
|
# CHECK: {{.*}}.s:[[# @LINE+1]]:1: error: changed section flags for .foo, expected: 0x6
|
||
|
.section .foo,"awx",@progbits
|
||
|
|
||
|
# CHECK: {{.*}}.s:[[# @LINE+1]]:1: error: changed section flags for .foo, expected: 0x6
|
||
|
.pushsection .foo,"a",@progbits
|
||
|
|
||
|
.pushsection .foo,"ax",@progbits
|