Skip to content
Snippets Groups Projects
Commit 20acbd9e authored by Reid Kleckner's avatar Reid Kleckner
Browse files

Try to fix arm bots by removing a superfluous __cdecl

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@204872 91177308-0d34-0410-b5e6-96231b3b80d8
parent cb77c78f
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ typedef int *T; ...@@ -133,7 +133,7 @@ typedef int *T;
T __ptr32 wrong10; // expected-error {{'__ptr32' attribute only applies to pointer arguments}} T __ptr32 wrong10; // expected-error {{'__ptr32' attribute only applies to pointer arguments}}
typedef char *my_va_list; typedef char *my_va_list;
void __cdecl __va_start(my_va_list *ap, ...); // expected-note {{passing argument to parameter 'ap' here}} void __va_start(my_va_list *ap, ...); // expected-note {{passing argument to parameter 'ap' here}}
void vmyprintf(const char *f, my_va_list ap); void vmyprintf(const char *f, my_va_list ap);
void myprintf(const char *f, ...) { void myprintf(const char *f, ...) {
my_va_list ap; my_va_list ap;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment