[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / switch-default-only.ll
blobac40fbbe389def035d397b42c95d1d616a194174
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -O0 -fast-isel=false -mtriple=i686-- < %s | FileCheck %s
4 ; No need for branching when the default and only destination follows
5 ; immediately after the switch.
6 define void @no_branch(i32 %x) {
7 ; CHECK-LABEL: no_branch:
8 ; CHECK:       # %bb.0: # %entry
9 ; CHECK-NEXT:    movl {{[0-9]+}}(%esp), %eax
10 ; CHECK-NEXT:  # %bb.1: # %exit
11 ; CHECK-NEXT:    retl
12 entry:
13   switch i32 %x, label %exit [ ]
14 exit:
15   ret void