1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=clflushopt | FileCheck %s --check-prefix=X86
3; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=clflushopt | FileCheck %s --check-prefix=X64
4
5define void @clflushopt(i8* %p) nounwind {
6; X86-LABEL: clflushopt:
7; X86:       ## %bb.0:
8; X86-NEXT:    movl {{[0-9]+}}(%esp), %eax
9; X86-NEXT:    clflushopt (%eax)
10; X86-NEXT:    retl
11;
12; X64-LABEL: clflushopt:
13; X64:       ## %bb.0:
14; X64-NEXT:    clflushopt (%rdi)
15; X64-NEXT:    retq
16  tail call void @llvm.x86.clflushopt(i8* %p)
17  ret void
18}
19declare void @llvm.x86.clflushopt(i8*) nounwind
20