Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/AArch64/fast-isel-switch-phi.ll @ 117:facf19d07cd9
check EHStack on EmitCall (CbC goto)
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 24 Aug 2016 20:10:41 +0900 |
parents | 60c9769439b8 |
children |
line wrap: on
line source
; RUN: llc -mtriple=aarch64-apple-darwin -fast-isel -verify-machineinstrs < %s ; Test that the Machine Instruction PHI node doesn't have more than one operand ; from the same predecessor. define i32 @foo(i32 %a, i32 %b, i1 %c) { entry: br i1 %c, label %switch, label %direct switch: switch i32 %a, label %exit [ i32 43, label %continue i32 45, label %continue ] direct: %var = add i32 %b, 1 br label %continue continue: %var.phi = phi i32 [ %var, %direct ], [ 0, %switch ], [ 0, %switch ] ret i32 %var.phi exit: ret i32 1 }