From: Douglas Gregor Date: Wed, 27 May 2009 23:32:34 +0000 (+0000) Subject: Add a target triple, because this test depends on details of the x86-64 ABI X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f65cd9291d580d4f57df5f850d19805e37c5b62;p=clang Add a target triple, because this test depends on details of the x86-64 ABI git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72503 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/member-functions.cpp b/test/CodeGenCXX/member-functions.cpp index 3f40453e98..8ada907117 100644 --- a/test/CodeGenCXX/member-functions.cpp +++ b/test/CodeGenCXX/member-functions.cpp @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm %s -o %t && +// RUN: clang-cc -emit-llvm %s -triple x86_64-apple-darwin9 -o %t && struct C { void f(); void g(int, ...);