1 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+fxsr | FileCheck %s
3 define void @test_fxsave(ptr %ptr) {
4 ; CHECK-LABEL: test_fxsave
6 call void @llvm.x86.fxsave(ptr %ptr)
9 declare void @llvm.x86.fxsave(ptr)
11 define void @test_fxsave64(ptr %ptr) {
12 ; CHECK-LABEL: test_fxsave64
14 call void @llvm.x86.fxsave64(ptr %ptr)
17 declare void @llvm.x86.fxsave64(ptr)
19 define void @test_fxrstor(ptr %ptr) {
20 ; CHECK-LABEL: test_fxrstor
22 call void @llvm.x86.fxrstor(ptr %ptr)
25 declare void @llvm.x86.fxrstor(ptr)
27 define void @test_fxrstor64(ptr %ptr) {
28 ; CHECK-LABEL: test_fxrstor64
30 call void @llvm.x86.fxrstor64(ptr %ptr)
33 declare void @llvm.x86.fxrstor64(ptr)