search for: hiiformathandl

Displaying 1 result from an estimated 1 matches for "hiiformathandl".

Did you mean: hiiformathandle
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?
...callers shadow space is not in the bitcode? > I have some code (attached as v.c): > int > ShellPrintHiiEx ( >   int                  Col, >   int                  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 >...