Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / EarlyCSE / globalsaa-memoryssa.ll
blob65357cc9971d2ec9420c5d31e944bab5de20594d
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -S -passes='require<globals-aa>,early-cse<memssa>' -earlycse-debug-hash | FileCheck %s
4 define i16 @f1() readonly {
5   ret i16 0
8 declare void @f2()
10 ; Check that EarlyCSE correctly handles function calls that don't have
11 ; a MemoryAccess.  In this case the calls to @f1 have no
12 ; MemoryAccesses since globals-aa determines that @f1 doesn't
13 ; read/write memory at all.
15 define void @f3() {
16 ; CHECK-LABEL: @f3(
17 ; CHECK-NEXT:    [[CALL1:%.*]] = call i16 @f1()
18 ; CHECK-NEXT:    call void @f2()
19 ; CHECK-NEXT:    ret void
21   %call1 = call i16 @f1()
22   call void @f2()
23   %call2 = call i16 @f1()
24   ret void