Mercurial > hg > CbC > CbC_llvm
view llvm/test/Transforms/ADCE/unreachable.ll @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | 1d019706d866 |
children | 1f2b6ac9f198 |
line wrap: on
line source
; RUN: opt < %s -adce -simplifycfg -simplifycfg-require-and-preserve-domtree=1 | llvm-dis ; RUN: opt < %s -passes=adce | llvm-dis define i32 @Test(i32 %A, i32 %B) { BB1: br label %BB4 BB2: ; No predecessors! br label %BB3 BB3: ; preds = %BB4, %BB2 %ret = phi i32 [ %X, %BB4 ], [ %B, %BB2 ] ; <i32> [#uses=1] ret i32 %ret BB4: ; preds = %BB1 %X = phi i32 [ %A, %BB1 ] ; <i32> [#uses=1] br label %BB3 }