Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/Thumb/iabs.ll @ 77:54457678186b
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | 95c75e76d11b |
children | 60c9769439b8 |
line wrap: on
line source
; RUN: llc < %s -mtriple=thumb-unknown-unknown -filetype=obj -o %t.o ; RUN: llvm-objdump -disassemble -arch=thumb %t.o | FileCheck %s define i32 @test(i32 %a) { %tmp1neg = sub i32 0, %a %b = icmp sgt i32 %a, -1 %abs = select i1 %b, i32 %a, i32 %tmp1neg ret i32 %abs ; This test just checks that 4 instructions were emitted ; CHECK: {{text}} ; CHECK: 0: ; CHECK-NEXT: 2: ; CHECK-NEXT: 4: ; CHECK-NEXT: 6: ; CHECK-NOT: 8: }