blob: 495d910b5cd62008a6e41f6791e55cf2400e462c [file] [log] [blame]
Dmitri Gribenkob137c9e2012-12-30 01:28:40 +00001; RUN: opt -codegenprepare -S < %s | FileCheck %s
Chris Lattner1b93be52011-01-15 07:25:29 +00002
3target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
4target triple = "x86_64-apple-darwin10.0.0"
5
Stephen Linc1c7a132013-07-14 01:42:54 +00006; CHECK-LABEL: @test1(
Chris Lattner8df83c42011-01-15 07:36:13 +00007; objectsize should fold to a constant, which causes the branch to fold to an
Nadav Rotem70409992012-08-14 05:19:07 +00008; uncond branch. Next, we fold the control flow alltogether.
Chris Lattner8df83c42011-01-15 07:36:13 +00009; rdar://8785296
Chris Lattner1b93be52011-01-15 07:25:29 +000010define i32 @test1(i8* %ptr) nounwind ssp noredzone align 2 {
11entry:
12 %0 = tail call i64 @llvm.objectsize.i64(i8* %ptr, i1 false)
13 %1 = icmp ugt i64 %0, 3
14 br i1 %1, label %T, label %trap
15
Nadav Rotem70409992012-08-14 05:19:07 +000016; CHECK: T:
17; CHECK-NOT: br label %
Chris Lattneraf263902011-01-15 07:51:19 +000018
Chris Lattner1b93be52011-01-15 07:25:29 +000019trap: ; preds = %0, %entry
20 tail call void @llvm.trap() noreturn nounwind
21 unreachable
22
23T:
Cameron Zwarich338d3622011-03-11 21:52:04 +000024; CHECK: ret i32 4
Chris Lattner1b93be52011-01-15 07:25:29 +000025 ret i32 4
26}
27
28declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readonly
29
30declare void @llvm.trap() nounwind