Displaying 1 result from an estimated 1 matches for "returnmarker".
2011 May 17
1
[LLVMdev] [cfe-dev] x86_64-pc-win32 ABI var arg code gen bug? Is the bitcode correct? Or is it the code gen?
... Row,
> const char *Language,
> const void *HiiFormatStringId,
> const void *HiiFormatHandle,
> ...
> )
> {
> VA_LIST Marker;
> int Value;
> VA_START (Marker, HiiFormatHandle);
> Value = ReturnMarker (Marker);
> VA_END(Marker);
>
> return Value;
> }
> clang -ccc-host-triple x86_64-pc-win32 -emit-llvm -S v.c
> declare void @llvm.va_start(i8*) nounwind
> declare void @llvm.va_end(i8*) nounwind
> define i32 @ShellPrintHiiEx(i32 %Col, i32 %Row, i8* %Language, i8*
> %...