19 lines · plain
1; RUN: llc < %s | FileCheck %s2;3; Be sure that we ignore clobbers of unallocatable registers, rather than4; crashing.5 6target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"7target triple = "aarch64"8 9; CHECK-LABEL: foo:10; CHECK: ret11define void @foo() #0 {12entry:13 call void asm sideeffect "", "~{v0}"()14 call void asm sideeffect "", "~{s0}"()15 ret void16}17 18attributes #0 = { nounwind "target-features"="-crypto,-fp-armv8,-neon" }19