-enable-tbaa is on by default now.

llvm-svn: 121945
This commit is contained in:
Dan Gohman 2010-12-16 02:53:48 +00:00
parent e1a17a3473
commit 189508c4c5
8 changed files with 9 additions and 9 deletions

View File

@ -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.

View File

@ -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"

View File

@ -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.

View File

@ -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.

View File

@ -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"

View File

@ -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.

View File

@ -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

View File

@ -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