[PATCH] D88353: [BasicAA] Integrate MaxObjSize for NoAlias
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Sep 27 03:25:32 PDT 2020
fhahn added inline comments.
================
Comment at: llvm/test/Transforms/DeadStoreElimination/MSSA/calloc-store.ll:1
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -basic-aa -dse -S | FileCheck %s
----------------
are there any real changes in this test? It does not use the new attribute, so are there changes expected?
================
Comment at: llvm/test/Transforms/LoopVectorize/X86/pr23997.ll:30
; CHECK-NEXT: [[BOUND1:%.*]] = icmp ult i8 addrspace(1)* [[DOT12]], [[SCEVGEP]]
-; CHECK-NEXT: [[MEMCHECK_CONFLICT:%.*]] = and i1 [[BOUND0]], [[BOUND1]]
-; CHECK-NEXT: br i1 [[MEMCHECK_CONFLICT]], label [[SCALAR_PH]], label [[VECTOR_PH:%.*]]
+; CHECK-NEXT: [[FOUND_CONFLICT:%.*]] = and i1 [[BOUND0]], [[BOUND1]]
+; CHECK-NEXT: br i1 [[FOUND_CONFLICT]], label [[SCALAR_PH]], label [[VECTOR_PH:%.*]]
----------------
are there any real changes in this test? looks like just renaming of value names in the IR?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88353/new/
https://reviews.llvm.org/D88353
More information about the llvm-commits
mailing list