mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
73f6bffbc1
llvm-svn: 201345
13 lines
416 B
LLVM
13 lines
416 B
LLVM
; Test that inline assembly is parsed by the MC layer when MC support is mature
|
|
; (even when the output is assembly).
|
|
|
|
; RUN: not llc -mtriple=thumb-pc-linux < %s > /dev/null 2> %t1
|
|
; RUN: FileCheck %s < %t1
|
|
|
|
; RUN: not llc -mtriple=thumb-pc-linux -filetype=obj < %s > /dev/null 2> %t2
|
|
; RUN: FileCheck %s < %t2
|
|
|
|
module asm " .this_directive_is_very_unlikely_to_exist"
|
|
|
|
; CHECK: LLVM ERROR: Error parsing inline asm
|