mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
-enable-tbaa is on by default now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121945 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
387f28aff4
commit
a4bdf2ea48
@ -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
Block a user