[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / inlineasm-X-allocation.ll
blobd6393e80c270af7cbe42548e43769efbe54b67cb
1 ; RUN: llc -mtriple=aarch64 -mattr=-fp-armv8 %s -o - | FileCheck %s  -check-prefix=nofp
3 ; In the novfp case, the compiler is forced to assign a core register,
4 ; even if the input is a float.
6 ; nofp-LABEL: f1
7 ; nofp-CHECK: ldr x0, [sp]
9 ; This can be generated by a function such as:
10 ;  void f1(float f) {asm volatile ("ldr $0, [sp]" : : "X" (f));}
12 define void @f1(float %f) {
13 entry:
14   call void asm sideeffect "ldr $0, [sp]", "X" (float %f) nounwind
16   ret void