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 cc04ebc..3d78e2e 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;