Prefix failing commands with not to make clear they are expected to fail.
[oota-llvm.git] / test / MC / X86 / AlignedBundling / bundle-group-too-large-error.s
1 # RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
2
3 # CHECK: ERROR: Fragment can't be larger than a bundle size
4
5   .text
6 foo:
7   .bundle_align_mode 4
8   pushq   %rbp
9
10   .bundle_lock
11   pushq   %r14
12   callq   bar
13   callq   bar
14   callq   bar
15   callq   bar
16   .bundle_unlock
17