mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00:00
ac6a87b06e
Summary: There are a number of files in the tree which have been accidentally checked in with DOS line endings. Convert these to native line endings. There are also a few files which have DOS line endings on purpose, and I have set the svn:eol-style property to 'CRLF' on those. Reviewers: joerg, aaron.ballman Subscribers: aaron.ballman, sanjoy, dsanders, llvm-commits Differential Revision: http://reviews.llvm.org/D15848 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256707 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
396 B
LLVM
13 lines
396 B
LLVM
; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave,+xsavec | FileCheck %s
|
|
|
|
define void @test_xsavec(i8* %ptr, i32 %hi, i32 %lo) {
|
|
; CHECK-LABEL: test_xsavec
|
|
; CHECK: movl 8(%esp), %edx
|
|
; CHECK: movl 12(%esp), %eax
|
|
; CHECK: movl 4(%esp), %ecx
|
|
; CHECK: xsavec (%ecx)
|
|
call void @llvm.x86.xsavec(i8* %ptr, i32 %hi, i32 %lo)
|
|
ret void;
|
|
}
|
|
declare void @llvm.x86.xsavec(i8*, i32, i32)
|