diff options
-rw-r--r-- | test/Analysis/malloc.c | 2 | ||||
-rw-r--r-- | test/SemaObjCXX/pointer-to-objc-pointer-conv.mm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test/Analysis/malloc.c b/test/Analysis/malloc.c index 03fc38a73f..615c5a43d1 100644 --- a/test/Analysis/malloc.c +++ b/test/Analysis/malloc.c @@ -1,4 +1,6 @@ // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.deadcode.UnreachableCode,alpha.core.CastSize,unix.Malloc,debug.ExprInspection -analyzer-store=region -verify %s +// REQUIRES: LP64 + #include "Inputs/system-header-simulator.h" void clang_analyzer_eval(int); diff --git a/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm b/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm index 4becaaf058..7ada2f4239 100644 --- a/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm +++ b/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm @@ -1,6 +1,8 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s // expected-no-diagnostics +// REQUIRES: LP64 + @interface G @end |