aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/clflushopt.ll
blob: ee416eb96c5e551ca680f45b267203255a8bc161 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=clflushopt | FileCheck %s

define void @clflushopt(i8* %p) nounwind {
; CHECK-LABEL: clflushopt:
; CHECK:       ## BB#0:
; CHECK-NEXT:    movl {{[0-9]+}}(%esp), %eax
; CHECK-NEXT:    clflushopt (%eax)
; CHECK-NEXT:    retl
  tail call void @llvm.x86.clflushopt(i8* %p)
  ret void
}
declare void @llvm.x86.clflushopt(i8*) nounwind