You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
418 B
18 lines
418 B
; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+fxsr | FileCheck %s
|
|
|
|
define void @test_fxsave(i8* %ptr) {
|
|
; CHECK-LABEL: test_fxsave
|
|
; CHECK: fxsave
|
|
call void @llvm.x86.fxsave(i8* %ptr)
|
|
ret void;
|
|
}
|
|
declare void @llvm.x86.fxsave(i8*)
|
|
|
|
define void @test_fxrstor(i8* %ptr) {
|
|
; CHECK-LABEL: test_fxrstor
|
|
; CHECK: fxrstor
|
|
call void @llvm.x86.fxrstor(i8* %ptr)
|
|
ret void;
|
|
}
|
|
declare void @llvm.x86.fxrstor(i8*)
|