Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / clflushopt.ll
blob82a47529fd32411774c4647f84bb3a30bdcf6a92
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
5 define void @clflushopt(ptr %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
12 ; X64-LABEL: clflushopt:
13 ; X64:       ## %bb.0:
14 ; X64-NEXT:    clflushopt (%rdi)
15 ; X64-NEXT:    retq
16   tail call void @llvm.x86.clflushopt(ptr %p)
17   ret void
19 declare void @llvm.x86.clflushopt(ptr) nounwind