diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-10 03:03:30 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-10 03:03:30 +0000 |
commit | 4e484b8134c7eaeced03be7e4e0f7349def9b355 (patch) | |
tree | 5c3860700b1e400ff16562067894f020a0741850 /test/Coverage/c-language-features.inc | |
parent | 4004226773ac4a3070a940199be01ed6bdf1cf23 (diff) |
Support va_arg on _Complex.
gcc compat test suite results (Darwin x86-32 & -64):
--
# of expected passes 1110
# of unexpected failures 74
# of unresolved testcases 168
# of unsupported tests 2
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Coverage/c-language-features.inc')
-rw-r--r-- | test/Coverage/c-language-features.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Coverage/c-language-features.inc b/test/Coverage/c-language-features.inc index 8b56e6a55b..6a475d6c2f 100644 --- a/test/Coverage/c-language-features.inc +++ b/test/Coverage/c-language-features.inc @@ -103,6 +103,7 @@ void f4(int a0, int a1, int a2, va_list ap) { int t12_0 = __builtin_classify_type(t0); int t12_1 = __builtin_classify_type(t1); int t12_2 = __builtin_classify_type(t2); + // FIXME: Add _Complex and aggregate cases. int t13 = va_arg(ap, int); va_list t13_0; va_copy(t13_0, ap); |