I have some code I am compiling with LLVM, and some functions in the code are begin declared as variable argument functions with no named arguments when the functions have known types. For example, the following C code
uint64_t getStartTime();
is getting compiled to
declare i64 @getStartTime(...)
in bitcode. Why would this happen?
Regards,
Ryan