diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-12-01 18:05:11 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-12-01 18:05:11 +0000 |
commit | 473e70de24106ffb6f6345f1377988449d32c91e (patch) | |
tree | 53c0a55740cf172d480d8e889a39a95a9b72059c | |
parent | a4745616ebe36ba7699f18618382e764aa8183a1 (diff) |
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
-rw-r--r-- | test/SemaCXX/__null.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; |