1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/CodeGen/Mips/brsize3.ll
Daniel Sanders ae8df9e819 [mips][mips16] Use isUnconditionalBranch() in AnalyzeBranch() and constant island pass.
Summary:
This stops it misidentifying unconditional branches as conditional branches
which fixes a -verify-machineinstrs error about exiting a function via fall through.

Reviewers: sdardis

Subscribers: dsanders, sdardis, llvm-commits

Differential Revision: http://reviews.llvm.org/D19864

llvm-svn: 268731
2016-05-06 13:23:51 +00:00

40 lines
1.4 KiB
LLVM

; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 \
; RUN: -mattr=+soft-float -mips16-hard-float -relocation-model=pic \
; RUN: -mips16-constant-islands -verify-machineinstrs < %s | \
; RUN: FileCheck %s -check-prefix=b-no-short
; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 \
; RUN: -mattr=+soft-float -mips16-hard-float -relocation-model=pic \
; RUN: -mips16-constant-islands -verify-machineinstrs < %s | \
; RUN: FileCheck %s -check-prefix=b-long
; ModuleID = 'brsize3.c'
target datalayout = "E-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-n32-S64"
target triple = "mips--linux-gnu"
; Function Attrs: noreturn nounwind optsize
define void @foo() #0 {
entry:
br label %x
x: ; preds = %x, %entry
tail call void asm sideeffect ".space 60000", ""() #1, !srcloc !1
br label %x
; b-long: $BB0_1:
; b-long: #APP
; b-long: .space 60000
; b-long: #NO_APP
; b-long: b $BB0_1
; b-no-short: $BB0_1:
; b-no-short: #APP
; b-no-short: .space 60000
; b-no-short: #NO_APP
; b-no-short-NOT: b $BB0_1 # 16 bit inst
}
attributes #0 = { noreturn nounwind optsize "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
attributes #1 = { nounwind }
!1 = !{i32 45}