Removed size_t from the parameter list of the malloc() prototype in generated C

code.  This prevents a compiler warning on Sparc that causes the tests to fail.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7125 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2003-07-08 14:52:09 +00:00
parent 48aa824279
commit cf6d7b0353
2 changed files with 2 additions and 2 deletions

View File

@ -676,7 +676,7 @@ void CWriter::printModule(Module *M) {
// Print Malloc prototype if needed
if (needsMalloc){
Out << "\n/* Malloc to make sun happy */\n";
Out << "extern void * malloc(size_t);\n\n";
Out << "extern void * malloc();\n\n";
}
// Output the global variable declarations

View File

@ -676,7 +676,7 @@ void CWriter::printModule(Module *M) {
// Print Malloc prototype if needed
if (needsMalloc){
Out << "\n/* Malloc to make sun happy */\n";
Out << "extern void * malloc(size_t);\n\n";
Out << "extern void * malloc();\n\n";
}
// Output the global variable declarations