From 473e70de24106ffb6f6345f1377988449d32c91e Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Mon, 1 Dec 2008 18:05:11 +0000 Subject: [PATCH] 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 --- test/SemaCXX/__null.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.40.0