~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/MC/MachO/ARM/bad-darwin-directives.s

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@ RUN: not llvm-mc -n -triple armv7-apple-darwin10 %s -filetype asm -o /dev/null 2>&1 \
 
2
@ RUN:  | FileCheck --check-prefix CHECK-ERROR %s
 
3
 
 
4
@ RUN: not llvm-mc -n -triple armv7-apple-darwin10 %s -filetype obj -o /dev/null 2>&1 \
 
5
@ RUN:  | FileCheck --check-prefix CHECK-ERROR %s
 
6
 
 
7
@ rdar://16335232
 
8
 
 
9
.eabi_attribute 8, 1
 
10
@ CHECK-ERROR: error: unknown directive
 
11
 
 
12
.cpu
 
13
@ CHECK-ERROR: error: unknown directive
 
14
 
 
15
.fpu neon
 
16
@ CHECK-ERROR: error: unknown directive
 
17
 
 
18
.arch armv7
 
19
@ CHECK-ERROR: error: unknown directive
 
20
 
 
21
.fnstart
 
22
@ CHECK-ERROR: error: unknown directive
 
23
 
 
24
.tlsdescseq
 
25
@ CHECK-ERROR: error: unknown directive
 
26
 
 
27
.object_arch armv7
 
28
@ CHECK-ERROR: error: unknown directive
 
29