[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / ARM / call-noret-minsize.ll
blobe610d29d77fc1c9ac55eaec5730a788e5a1b3055
1 ; RUN: llc < %s -mtriple=armv7-apple-ios -mcpu=cortex-a8   | FileCheck %s -check-prefix=ARM
2 ; RUN: llc < %s -mtriple=armv7-apple-ios -mcpu=swift       | FileCheck %s -check-prefix=SWIFT
3 ; rdar://12348580
5 define void @t1() noreturn minsize nounwind ssp {
6 entry:
7 ; ARM-LABEL: t1:
8 ; ARM: bl _bar
10 ; SWIFT-LABEL: t1:
11 ; SWIFT: bl _bar
12   tail call void @bar() noreturn nounwind
13   unreachable
16 define void @t2() noreturn minsize nounwind ssp {
17 entry:
18 ; ARM-LABEL: t2:
19 ; ARM: bl _t1
21 ; SWIFT-LABEL: t2:
22 ; SWIFT: bl _t1
23   tail call void @t1() noreturn nounwind
24   unreachable
27 declare void @bar() noreturn