mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

Summary: Previously if a modifer was placed on a non-GPR register class we would hit an assert or crash. Reviewers: echristo Reviewed By: echristo Subscribers: eraman, llvm-commits Differential Revision: https://reviews.llvm.org/D45751 llvm-svn: 330238
9 lines
305 B
LLVM
9 lines
305 B
LLVM
; RUN: not llc -mtriple=x86_64-- < %s 2>&1 | FileCheck %s
|
|
|
|
;CHECK: error: invalid operand in inline asm: 'vmovd ${1:x}, $0'
|
|
define i32 @foo() {
|
|
entry:
|
|
%0 = tail call i32 asm sideeffect "vmovd ${1:x}, $0", "=r,x,~{dirflag},~{fpsr},~{flags}"(<2 x i64> <i64 240518168632, i64 240518168632>)
|
|
ret i32 %0
|
|
}
|