view test/CodeGen/X86/system-intrinsics-xsaveopt.ll @ 100:7d135dc70f03 LLVM 3.9

LLVM 3.9
author Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp>
date Tue, 26 Jan 2016 22:53:40 +0900
parents afa8332a0e37
children
line wrap: on
line source

; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave,+xsaveopt | FileCheck %s

define void @test_xsaveopt(i8* %ptr, i32 %hi, i32 %lo) {
; CHECK-LABEL: test_xsaveopt
; CHECK: movl     8(%esp), %edx
; CHECK: movl     12(%esp), %eax
; CHECK: movl     4(%esp), %ecx
; CHECK: xsaveopt (%ecx)
  call void @llvm.x86.xsaveopt(i8* %ptr, i32 %hi, i32 %lo)
  ret void;
}
declare void @llvm.x86.xsaveopt(i8*, i32, i32)