File: pr8925.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,245,028 kB
  • sloc: cpp: 7,619,726; ansic: 1,434,018; asm: 1,058,748; python: 252,740; f90: 94,671; objc: 70,685; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,675; awk: 3,523; javascript: 2,409; xml: 892; fortran: 770
file content (38 lines) | stat: -rw-r--r-- 1,218 bytes parent folder | download | duplicates (3)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc < %s -mtriple=i686-- | FileCheck %s --check-prefixes=X86
; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s --check-prefixes=X64

define fastcc i32* @force.ri32(i32* %x) nounwind {
; X86-LABEL: force.ri32:
; X86:       # %bb.0: # %entry
; X86-NEXT:    testl %ecx, %ecx
; X86-NEXT:    je .LBB0_2
; X86-NEXT:  # %bb.1: # %Limpl0.pre
; X86-NEXT:    movl %ecx, %eax
; X86-NEXT:    retl
; X86-NEXT:  .LBB0_2: # %Limpl1.pre
; X86-NEXT:    calll pr.error@PLT
;
; X64-LABEL: force.ri32:
; X64:       # %bb.0: # %entry
; X64-NEXT:    testq %rdi, %rdi
; X64-NEXT:    je .LBB0_2
; X64-NEXT:  # %bb.1: # %Limpl0.pre
; X64-NEXT:    movq %rdi, %rax
; X64-NEXT:    retq
; X64-NEXT:  .LBB0_2: # %Limpl1.pre
; X64-NEXT:    pushq %rax
; X64-NEXT:    callq pr.error@PLT
entry:
  %nz = icmp eq i32* %x, null
  br i1 %nz, label %Limpl1.pre, label %Limpl0.pre

Limpl0.pre:                                       ; preds = %entry
  ret i32* %x

Limpl1.pre:                                       ; preds = %entry
  tail call fastcc void @pr.error() noreturn nounwind
  unreachable
}

declare fastcc void @pr.error() noreturn nounwind