brintos

brintos / llvm-project-archived public Read only

0
0
Text · 598 B · 0e94609 Raw
16 lines · plain
1; RUN: opt -aa-pipeline=basic-aa -passes='print<memoryssa>,verify<memoryssa>' -disable-output < %s 2>&1 | FileCheck %s2;3; Ensures that MemorySSA leverages the ground truth of the function being4; called even if the call and function signatures don't match.5 6declare i1 @opaque_true(i1) nounwind readonly7 8define i1 @foo(ptr %ptr, i1 %cond) {9  %cond_wide = zext i1 %cond to i3210; CHECK: MemoryUse(liveOnEntry)11; CHECK-NEXT: call i32 @opaque_true(i32 %cond_wide)12  %cond_hidden_wide = call i32 @opaque_true(i32 %cond_wide)13  %cond_hidden = trunc i32 %cond_hidden_wide to i114  ret i1 %cond_hidden15}16