• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: not llvm-mc -triple i386-pc-win32 -filetype=obj %s 2>&1 | FileCheck %s
2// RUN: not llvm-mc -triple x86_64-pc-win32 -filetype=obj %s 2>&1 | FileCheck %s
3
4// CHECK: error: conflicting section flags 'b' and 'd'
5.section s_db,"db"; .long 1
6
7// CHECK: error: conflicting section flags 'b' and 'd'
8.section s_bd,"bd"; .long 1
9