Guy Blank | 2bdc74a | 2016-09-28 11:22:17 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -fast-isel -mtriple=x86_64-unknown-linux-gnu -mattr=+avx512f | FileCheck %s |
2 | |||||
3 | define i1 @test_i1(i1* %b) { | ||||
4 | ; CHECK-LABEL: test_i1: | ||||
5 | ; CHECK: # BB#0: # %entry | ||||
6 | ; CHECK-NEXT: testb $1, (%rdi) | ||||
7 | entry: | ||||
8 | %0 = load i1, i1* %b, align 1 | ||||
9 | br i1 %0, label %in, label %out | ||||
10 | in: | ||||
11 | ret i1 0 | ||||
12 | out: | ||||
13 | ret i1 1 | ||||
14 | } | ||||
15 |