diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-27 23:32:34 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-27 23:32:34 +0000 |
commit | 1f65cd9291d580d4f57df5f850d19805e37c5b62 (patch) | |
tree | 720e71406bbbae6a00f612b703f07f190c151ee8 /test/CodeGenCXX/member-functions.cpp | |
parent | 6569d68745c8213709740337d2be52b031384f58 (diff) | |
download | clang-1f65cd9291d580d4f57df5f850d19805e37c5b62.tar.gz |
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
Diffstat (limited to 'test/CodeGenCXX/member-functions.cpp')
-rw-r--r-- | test/CodeGenCXX/member-functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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, ...); |