blob: 5b224760460c5f41f00286b41cb8c3035148f0e9 [file] [log] [blame]
Juergen Ributzkaaddb75a2014-08-21 20:57:57 +00001; RUN: llc -mtriple=arm64-apple-darwin -aarch64-atomic-cfg-tidy=0 -verify-machineinstrs < %s | FileCheck %s
2; RUN: llc -mtriple=arm64-apple-darwin -aarch64-atomic-cfg-tidy=0 -fast-isel -fast-isel-abort -verify-machineinstrs < %s | FileCheck %s
Juergen Ributzka50a40052014-08-01 18:39:24 +00003
4; Test if the BBs are reordred according to their branch weights.
5define i64 @branch_weights_test(i64 %a, i64 %b) {
6; CHECK-LABEL: branch_weights_test
7; CHECK-LABEL: success
8; CHECK-LABEL: fail
9 %1 = icmp ult i64 %a, %b
10 br i1 %1, label %fail, label %success, !prof !0
11
12fail:
13 ret i64 -1
14
15success:
16 ret i64 0
17}
18
19!0 = metadata !{metadata !"branch_weights", i32 0, i32 2147483647}