Mercurial > hg > CbC > CbC_llvm
view llvm/test/Transforms/LICM/PR24013.ll @ 225:f7655407a6ba
remove unnecessary files
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 19 Jul 2021 03:48:36 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line source
; RUN: opt -licm -S < %s | FileCheck %s define void @f(i1 zeroext %p1) { ; CHECK-LABEL: @f( entry: br label %lbl lbl.loopexit: ; No predecessors! br label %lbl lbl: ; preds = %lbl.loopexit, %entry %phi = phi i32 [ %conv, %lbl.loopexit ], [ undef, %entry ] ; CHECK: phi i32 [ undef, {{.*}} ], [ undef br label %if.then.5 if.then.5: ; preds = %if.then.5, %lbl %conv = zext i1 undef to i32 br label %if.then.5 }