brintos

brintos / llvm-project-archived public Read only

0
0
Text · 595 B · 34ce881 Raw
24 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -fast-isel -mtriple=x86_64-unknown-linux-gnu -mattr=+avx512f  | FileCheck %s3 4define i1 @test_i1(ptr %b) {5; CHECK-LABEL: test_i1:6; CHECK:       # %bb.0: # %entry7; CHECK-NEXT:    testb $1, (%rdi)8; CHECK-NEXT:    je .LBB0_29; CHECK-NEXT:  # %bb.1: # %in10; CHECK-NEXT:    xorl %eax, %eax11; CHECK-NEXT:    retq12; CHECK-NEXT:  .LBB0_2: # %out13; CHECK-NEXT:    movb $1, %al14; CHECK-NEXT:    retq15entry:16  %0 = load i1, ptr %b, align 117  br i1 %0, label %in, label %out18in:19  ret i1 020out:21  ret i1 122}23 24