[llvm-commits] [compiler-rt] r123006 - /compiler-rt/trunk/lib/int_lib.h

Nick Kledzik kledzik at apple.com
Fri Jan 7 11:09:06 PST 2011


Author: kledzik
Date: Fri Jan  7 13:09:06 2011
New Revision: 123006

URL: http://llvm.org/viewvc/llvm-project?rev=123006&view=rev
Log:
Add missing <stdint.h> to build properly on Solaris.  Patch by Joakim Johansson

Modified:
    compiler-rt/trunk/lib/int_lib.h

Modified: compiler-rt/trunk/lib/int_lib.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/int_lib.h?rev=123006&r1=123005&r2=123006&view=diff
==============================================================================
--- compiler-rt/trunk/lib/int_lib.h (original)
+++ compiler-rt/trunk/lib/int_lib.h Fri Jan  7 13:09:06 2011
@@ -20,6 +20,7 @@
 /* Assumption:  right shift of signed negative is arithmetic shift */
 
 #include <limits.h>
+#include <stdint.h>
 #include "endianness.h"
 #include <math.h>
 





More information about the llvm-commits mailing list