[llvm-commits] [lld] r152387 - in /lld/trunk: include/lld/Core/Reference.h lib/Core/NativeFileFormat.h

Michael J. Spencer bigcheesegs at gmail.com
Thu Mar 8 21:27:11 PST 2012


Author: mspencer
Date: Thu Mar  8 23:27:11 2012
New Revision: 152387

URL: http://llvm.org/viewvc/llvm-project?rev=152387&view=rev
Log:
Use llvm/Support/DataTypes instead of stdint.h

Modified:
    lld/trunk/include/lld/Core/Reference.h
    lld/trunk/lib/Core/NativeFileFormat.h

Modified: lld/trunk/include/lld/Core/Reference.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/include/lld/Core/Reference.h?rev=152387&r1=152386&r2=152387&view=diff
==============================================================================
--- lld/trunk/include/lld/Core/Reference.h (original)
+++ lld/trunk/include/lld/Core/Reference.h Thu Mar  8 23:27:11 2012
@@ -10,7 +10,7 @@
 #ifndef LLD_CORE_REFERENCES_H_
 #define LLD_CORE_REFERENCES_H_
 
-#include <stdint.h>
+#include "llvm/Support/DataTypes.h"
 
 namespace lld {
 

Modified: lld/trunk/lib/Core/NativeFileFormat.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Core/NativeFileFormat.h?rev=152387&r1=152386&r2=152387&view=diff
==============================================================================
--- lld/trunk/lib/Core/NativeFileFormat.h (original)
+++ lld/trunk/lib/Core/NativeFileFormat.h Thu Mar  8 23:27:11 2012
@@ -10,7 +10,7 @@
 #ifndef LLD_CORE_NATIVE_FILE_FORMAT_H_
 #define LLD_CORE_NATIVE_FILE_FORMAT_H_
 
-#include <stdint.h>
+#include "llvm/Support/DataTypes.h"
 
 namespace lld {
 





More information about the llvm-commits mailing list