xref: /llvm-project/llvm/test/tools/UpdateTestChecks/update_analyze_test_checks/Inputs/scev.ll (revision ac466c75258888a212e52a4616e287dc4ec6a68b)
1; RUN: opt -passes='print<scalar-evolution>' < %s -disable-output 2>&1 | FileCheck %s
2
3define i32 @basic(i32 %x, i32 %y) {
4  %r = add i32 %x, %y
5  ret i32 %r
6}
7