[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / test / CodeGen / X86 / cldemote-intrinsic.ll
blob83167456ac988e8ff10af41af8c40eaa61ac7485
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-linux -mattr=+cldemote | FileCheck %s --check-prefix=X64
3 ; RUN: llc < %s -mtriple=i386-pc-linux -mattr=+cldemote | FileCheck %s --check-prefix=X32
5 define void @test_cldemote(i8* %p) {
6 ; X64-LABEL: test_cldemote:
7 ; X64:       # %bb.0: # %entry
8 ; X64-NEXT:    cldemote (%rdi)
9 ; X64-NEXT:    retq
11 ; X32-LABEL: test_cldemote:
12 ; X32:       # %bb.0: # %entry
13 ; X32-NEXT:    movl {{[0-9]+}}(%esp), %eax
14 ; X32-NEXT:    cldemote (%eax)
15 ; X32-NEXT:    retl
16 entry:
17   tail call void @llvm.x86.cldemote(i8* %p)
18   ret void
21 declare void @llvm.x86.cldemote(i8*)