1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/X86/select_meta.ll
Xinliang David Li 4abbd8e898 [Profile] preserve branch metadata lowering select in CGP
CGP currently drops select's MD_prof profile data when
generating conditional branch which can lead to bad
code layout. The patch fixes the issue.

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

llvm-svn: 280600
2016-09-03 21:26:36 +00:00

17 lines
511 B
LLVM

; RUN: llc -mtriple=x86_64-unknown-unknown -print-after-all < %s 2>&1 | FileCheck %s
; Function Attrs: norecurse nounwind readnone uwtable
define i32 @foo(i32, i32, i32) {
%4 = and i32 %0, 3
%5 = icmp eq i32 %4, 1
%6 = select i1 %5, i32 %1, i32 %2, !prof !1
; CHECK: br {{.*}}label{{.*}}, label{{.*}}, !prof ![[WT:.*]]
ret i32 %6
}
!llvm.ident = !{!0}
!0 = !{!"clang version 4.0.0 (trunk 279683)"}
!1 = !{!"branch_weights", i32 1000, i32 1 }
; CHECK ![[WT]] = !{!"branch_weights", i32 1000, i32 1 }