16 lines · plain
1# RUN: llvm-mc -triple i386-apple-darwin10 %s | FileCheck %s2# RUN: llvm-mc -triple i386-pc-mingw32 %s | FileCheck %s3# RUN: not llvm-mc -triple i386-linux-gnu %s 2>&1 | FileCheck %s -check-prefix=ERROR4 5# CHECK: TEST0:6# CHECK: .lcomm a,7,47# CHECK: .lcomm b,88# CHECK: .lcomm c,09 10# ELF doesn't like alignment on .lcomm.11# ERROR: alignment not supported on this target12TEST0: 13 .lcomm a, 8-1, 414 .lcomm b,815 .lcomm c, 016