[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Analysis / GlobalsModRef / inaccessiblememonly.ll
blobd7a3cfc78a3334694436a8cd1050717acabc737a
1 ; RUN: opt -O3 -S < %s | FileCheck %s
3 target datalayout = "e-i64:64-f80:128-n8:16:32:64"
4 target triple = "x86_64-unknown-linux-gnu"
6 define void @donteliminate() {
7 ; CHECK-LABEL: donteliminate
8 ; CHECK-NEXT: tail call noalias i8* @allocmemory()
9 ; CHECK-NEXT: tail call noalias i8* @allocmemory()
10 ; CHECK-NEXT: tail call noalias i8* @allocmemory()
11 ; CHECK-NEXT: ret void
12   %1 = tail call noalias i8* @allocmemory()
13   %2 = tail call noalias i8* @allocmemory()
14   %3 = tail call noalias i8* @allocmemory()
15   ret void
18 ; Function Attrs: inaccessiblememonly
19 declare noalias i8* @allocmemory() #0
21 attributes #0 = { inaccessiblememonly }