[llvm-commits] Trampoline support (pointers nested funtions)

Duncan Sands baldrick at free.fr
Thu Jul 26 12:15:08 PDT 2007


There was a small mistake in the X86 error checking: i64 inreg arguments should
count as consuming two registers.  Fix:

-            InRegCount++;
+            InRegCount += (getTargetData()->getTypeSizeInBits(*I) + 31) / 32;



More information about the llvm-commits mailing list