[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Transforms / NewGVN / eliminate-callsite-inline.ll
blob6cf543840cfe91873221d433f2f4c838eb3d792c
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4
2 ; RUN: opt -passes=inline,newgvn -S < %s | FileCheck %s
5 define void @f2() {
6 ; CHECK-LABEL: define void @f2() {
7 ; CHECK-NEXT:    ret void
9   call void @f1()
10   call void @f1()
11   ret void
14 define internal void @f1() #1 {
15 ; CHECK-LABEL: define internal void @f1(
16 ; CHECK-SAME: ) #[[ATTR0:[0-9]+]] {
17 ; CHECK-NEXT:  entry:
18 ; CHECK-NEXT:    ret void
20 entry:
21   ret void
24 attributes #1 = { noinline nounwind readnone willreturn }