diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-01-22 04:41:11 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-01-22 04:41:11 +0000 |
commit | fc8d1dd024347ac50b7f70ecaa4cf15e4cfffabb (patch) | |
tree | d437fec9998e3dd40ca89918d2acc3e25900a59e | |
parent | 93d61374f3a12251aa6cc24bea0e0829ad23cdd0 (diff) |
This test is only supposed to test that the objc-arc alias analysis
allows for gvn to perform certain optimizations. Thus the runline should
only contain -objc-arc-aa, not the full -objc-arc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173126 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/ObjCARC/gvn.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/ObjCARC/gvn.ll b/test/Transforms/ObjCARC/gvn.ll index 6917b02e03..3648866de0 100644 --- a/test/Transforms/ObjCARC/gvn.ll +++ b/test/Transforms/ObjCARC/gvn.ll @@ -1,4 +1,4 @@ -; RUN: opt -S -basicaa -objc-arc -gvn < %s | FileCheck %s +; RUN: opt -S -basicaa -objc-arc-aa -gvn < %s | FileCheck %s @x = common global i8* null, align 8 |