diff options
Diffstat (limited to 'test/CodeGen/2011-03-31-ArrayRefFolding.c')
-rw-r--r-- | test/CodeGen/2011-03-31-ArrayRefFolding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/2011-03-31-ArrayRefFolding.c b/test/CodeGen/2011-03-31-ArrayRefFolding.c index 3fc5e5af31..31c0a681a4 100644 --- a/test/CodeGen/2011-03-31-ArrayRefFolding.c +++ b/test/CodeGen/2011-03-31-ArrayRefFolding.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin -Os %s | FileCheck %s +// RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin %s | FileCheck %s // PR9571 struct t { @@ -9,7 +9,7 @@ extern struct t *cfun; int f(void) { if (!(cfun + 0)) - // CHECK: icmp eq %struct.t* %tmp, null + // CHECK: icmp ne %struct.t* return 0; return cfun->x; } |