reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s | FileCheck %s

target datalayout = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"
target triple = "i386-unknown-linux-gnu"

@b = global i16 0, align 4

define i32 @main() {
; CHECK-LABEL: main:
; CHECK:       # %bb.0: # %entry
; CHECK-NEXT:    xorl %eax, %eax
; CHECK-NEXT:    testb %al, %al
; CHECK-NEXT:    jne .LBB0_3
; CHECK-NEXT:  # %bb.1: # %go
; CHECK-NEXT:    movl $-1, %ecx
; CHECK-NEXT:    movsbl b, %edx
; CHECK-NEXT:    notl %ecx
; CHECK-NEXT:    movzwl %dx, %edx
; CHECK-NEXT:    cmpl $-1, %edx
; CHECK-NEXT:    sbbl %ecx, %eax
; CHECK-NEXT:    jge .LBB0_3
; CHECK-NEXT:  # %bb.2: # %if.then
; CHECK-NEXT:    movl $42, %eax
; CHECK-NEXT:    retl
; CHECK-NEXT:  .LBB0_3: # %if.else
; CHECK-NEXT:    xorl %eax, %eax
; CHECK-NEXT:    retl
entry:
  %true = icmp eq i32 0, 0
  %const = bitcast i64 -4294967296 to i64
  br i1 %true, label %go, label %if.else

go:
  %b = load i16, i16* @b, align 4
  %sext = shl i16 %b, 8
  %conv = ashr i16 %sext, 8
  %neg4 = xor i64 %const, -1
  %conv5 = zext i16 %conv to i64
  %cmp = icmp slt i64 %conv5, %neg4
  br i1 %cmp, label %if.then, label %if.else

if.then:
  ret i32 42

if.else:
  ret i32 0
}