diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-05-30 23:50:33 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-05-30 23:50:33 +0000 |
commit | b922abb47ab4c43fc672f9be324556229354df2b (patch) | |
tree | 0f8b8bcf6f623548faca57745a9939e6c76d8caf /llvm/lib/CodeGen/MachOWriter.h | |
parent | fd2af0cf86a761158050218a92ea13a15cdd9303 (diff) | |
download | bcm5719-llvm-b922abb47ab4c43fc672f9be324556229354df2b.tar.gz bcm5719-llvm-b922abb47ab4c43fc672f9be324556229354df2b.zip |
Use uint8_t and int32_t in {JIT,Machine}CodeEmiters
llvm-svn: 72650
Diffstat (limited to 'llvm/lib/CodeGen/MachOWriter.h')
-rw-r--r-- | llvm/lib/CodeGen/MachOWriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachOWriter.h b/llvm/lib/CodeGen/MachOWriter.h index 20a4084638e..6ab66eee926 100644 --- a/llvm/lib/CodeGen/MachOWriter.h +++ b/llvm/lib/CodeGen/MachOWriter.h @@ -98,7 +98,7 @@ namespace llvm { return "Mach-O Writer"; } - typedef std::vector<unsigned char> DataBuffer; + typedef std::vector<uint8_t> DataBuffer; protected: /// Output stream to send the resultant object file to. /// |