mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
bcfafa313d
This time with all files included. llvm-svn: 233696
12 lines
244 B
LLVM
12 lines
244 B
LLVM
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; CHECK: if{{.*}}add
|
|
; CHECK: if{{.*}}sub
|
|
|
|
define i32 @foo (i1 %a, i32 %b, i32 %c, i32 %d) nounwind {
|
|
%1 = add i32 %b, %d
|
|
%2 = sub i32 %c, %d
|
|
%3 = select i1 %a, i32 %1, i32 %2
|
|
ret i32 %3
|
|
}
|
|
|