Rename target_pointer_width to pointer_width and turn it into an u32
Rename target_pointer_width to pointer_width because it is already member of the Target struct. The compiler supports only three valid values for target_pointer_width: 16, 32, 64. Thus it can safely be turned into an int. This means less allocations and clones as well as easier handling of the type.
This commit is contained in:
parent
64ba25d0f2
commit
0d1aa1e034
5 changed files with 28 additions and 24 deletions
|
@ -16,10 +16,10 @@ pub(crate) unsafe fn codegen(
|
|||
) {
|
||||
let llcx = &*mods.llcx;
|
||||
let llmod = mods.llmod();
|
||||
let usize = match &tcx.sess.target.target.target_pointer_width[..] {
|
||||
"16" => llvm::LLVMInt16TypeInContext(llcx),
|
||||
"32" => llvm::LLVMInt32TypeInContext(llcx),
|
||||
"64" => llvm::LLVMInt64TypeInContext(llcx),
|
||||
let usize = match tcx.sess.target.target.pointer_width {
|
||||
16 => llvm::LLVMInt16TypeInContext(llcx),
|
||||
32 => llvm::LLVMInt32TypeInContext(llcx),
|
||||
64 => llvm::LLVMInt64TypeInContext(llcx),
|
||||
tws => bug!("Unsupported target word size for int: {}", tws),
|
||||
};
|
||||
let i8 = llvm::LLVMInt8TypeInContext(llcx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue