[flang][cuda] Do not register global constants (#118582)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / no-fp-asm-clobbers-crash.ll
blob5cd8dc57f9adfad5955ee5df965bd360b150e308
1 ; RUN: llc < %s | FileCheck %s
3 ; Be sure that we ignore clobbers of unallocatable registers, rather than
4 ; crashing.
6 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
7 target triple = "aarch64"
9 ; CHECK-LABEL: foo:
10 ; CHECK: ret
11 define void @foo() #0 {
12 entry:
13   call void asm sideeffect "", "~{v0}"()
14   call void asm sideeffect "", "~{s0}"()
15   ret void
18 attributes #0 = { nounwind "target-features"="-crypto,-fp-armv8,-neon" }