From: Douglas Gregor Date: Mon, 1 Dec 2008 18:05:11 +0000 (+0000) Subject: Make sure __null test runs in both 32- and 64-bit. Thanks Anders X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=473e70de24106ffb6f6345f1377988449d32c91e;p=clang Make sure __null test runs in both 32- and 64-bit. Thanks Anders git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60360 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/__null.cpp b/test/SemaCXX/__null.cpp index cc04ebca49..3d78e2e8db 100644 --- a/test/SemaCXX/__null.cpp +++ b/test/SemaCXX/__null.cpp @@ -1,4 +1,5 @@ -// RUN: clang %s -fsyntax-only -verify +// RUN: clang -triple x86_64-unknown-unknown %s -fsyntax-only -verify && +// RUN: clang -triple i686-unknown-unknown %s -fsyntax-only -verify void f() { int* i = __null;