forked from OSchip/llvm-project
parent
e1a17a3473
commit
189508c4c5
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -enable-tbaa -tbaa -basicaa -gvn -S | FileCheck %s
|
||||
; RUN: opt < %s -tbaa -basicaa -gvn -S | FileCheck %s
|
||||
|
||||
; Test that basic alias queries work.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -enable-tbaa -tbaa -basicaa -argpromotion -mem2reg -S | not grep alloca
|
||||
; RUN: opt < %s -tbaa -basicaa -argpromotion -mem2reg -S | not grep alloca
|
||||
|
||||
target datalayout = "E-p:64:64:64"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -enable-tbaa -tbaa -basicaa -dse -S | FileCheck %s
|
||||
; RUN: opt < %s -tbaa -basicaa -dse -S | FileCheck %s
|
||||
|
||||
; DSE should make use of TBAA.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -enable-tbaa -tbaa -basicaa -functionattrs -S | FileCheck %s
|
||||
; RUN: opt < %s -tbaa -basicaa -functionattrs -S | FileCheck %s
|
||||
|
||||
; FunctionAttrs should make use of TBAA.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -enable-tbaa -tbaa -basicaa -gvn -S < %s | FileCheck %s
|
||||
; RUN: opt -tbaa -basicaa -gvn -S < %s | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -tbaa -licm -enable-tbaa -S < %s | FileCheck %s
|
||||
; RUN: opt -tbaa -licm -S < %s | FileCheck %s
|
||||
|
||||
; LICM should be able to hoist the address load out of the loop
|
||||
; by using TBAA information.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; RUN: opt -enable-tbaa -basicaa -tbaa -gvn -instcombine -S < %s | FileCheck %s --check-prefix=TBAA
|
||||
; RUN: opt -enable-tbaa -tbaa -basicaa -gvn -instcombine -S < %s | FileCheck %s --check-prefix=BASICAA
|
||||
; RUN: opt -basicaa -tbaa -gvn -instcombine -S < %s | FileCheck %s --check-prefix=TBAA
|
||||
; RUN: opt -tbaa -basicaa -gvn -instcombine -S < %s | FileCheck %s --check-prefix=BASICAA
|
||||
|
||||
; According to the TBAA metadata the load and store don't alias. However,
|
||||
; according to the actual code, they do. The order of the alias analysis
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -tbaa -enable-tbaa -sink -S < %s | FileCheck %s
|
||||
; RUN: opt -tbaa -sink -S < %s | FileCheck %s
|
||||
|
||||
; CHECK: a:
|
||||
; CHECK: %f = load float* %p, !tbaa !2
|
||||
|
|
Loading…
Reference in New Issue