aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-08-26 17:47:45 +0000
committerDevang Patel <dpatel@apple.com>2010-08-26 17:47:45 +0000
commit767b5b6227a49cac98c275ab05f1560da0fe90be (patch)
treea8c5a4ca38d47275b9431dd73900899e881bb40b
parent62efd3b38576536cf06ed5bf2f39535eb7961e99 (diff)
Fix prototypes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112200 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm-c/lto.h7
-rw-r--r--tools/lto/lto.cpp2
2 files changed, 5 insertions, 4 deletions
diff --git a/include/llvm-c/lto.h b/include/llvm-c/lto.h
index 95b3d85a72..e6f69afa2e 100644
--- a/include/llvm-c/lto.h
+++ b/include/llvm-c/lto.h
@@ -18,6 +18,7 @@
#include <stdbool.h>
#include <stddef.h>
+#include "llvm/System/DataTypes.h"
#define LTO_API_VERSION 3
@@ -145,7 +146,7 @@ lto_module_set_target_triple(lto_module_t mod, const char *triple);
/**
* Returns the number of symbols in the object module.
*/
-extern unsigned int
+extern uint32_t
lto_module_get_num_symbols(lto_module_t mod);
@@ -153,14 +154,14 @@ lto_module_get_num_symbols(lto_module_t mod);
* Returns the name of the ith symbol in the object module.
*/
extern const char*
-lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
+lto_module_get_symbol_name(lto_module_t mod, uint32_t index);
/**
* Returns the attributes of the ith symbol in the object module.
*/
extern lto_symbol_attributes
-lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
+lto_module_get_symbol_attribute(lto_module_t mod, uint32_t index);
/**
diff --git a/tools/lto/lto.cpp b/tools/lto/lto.cpp
index a7ce2a07bb..3d7ef0a1cb 100644
--- a/tools/lto/lto.cpp
+++ b/tools/lto/lto.cpp
@@ -150,7 +150,7 @@ const char* lto_module_get_symbol_name(lto_module_t mod, uint32_t index)
// returns the attributes of the ith symbol in the object module
//
lto_symbol_attributes lto_module_get_symbol_attribute(lto_module_t mod,
- uint32_t index)
+ uint32_t index)
{
return mod->getSymbolAttributes(index);
}