cdisselkoen / llvm-ir

LLVM IR in natural Rust data structures
MIT License
550 stars 46 forks source link

Fix compilation on aarch64 #2

Closed jedisct1 closed 4 years ago

jedisct1 commented 4 years ago

llvm-ir currently cannot be compiled on aarch64 due to signed vs unsigned char * inconsistencies between platforms.

This simple diff fixes it.

cdisselkoen commented 4 years ago

Thanks!