brintos

brintos / llvm-project-archived public Read only

0
0
Text · 343 B · 50f510a Raw
15 lines · plain
1; RUN: llc -mtriple=aarch64-- -fast-isel -fast-isel-abort=4 -verify-machineinstrs < %s | FileCheck %s2 3; Check that we ignore the assume intrinsic.4 5; CHECK-LABEL: test:6; CHECK: // %bb.0:7; CHECK-NEXT: ret8define void @test(i32 %a) {9  %tmp0 = icmp slt i32 %a, 010  call void @llvm.assume(i1 %tmp0)11  ret void12}13 14declare void @llvm.assume(i1)15