Further Implement is_val_statically_known
This commit is contained in:
parent
5a4561749a
commit
971e37ff7e
5 changed files with 39 additions and 14 deletions
|
@ -439,6 +439,12 @@ fn codegen_regular_intrinsic_call<'tcx>(
|
|||
|
||||
ret.write_cvalue(fx, a);
|
||||
}
|
||||
sym::is_val_statically_known => {
|
||||
intrinsic_args!(fx, args => (_a); intrinsic);
|
||||
|
||||
let res = fx.bcx.ins().iconst(types::I8, 0);
|
||||
ret.write_cvalue(fx, CValue::by_val(res, ret.layout()));
|
||||
}
|
||||
sym::breakpoint => {
|
||||
intrinsic_args!(fx, args => (); intrinsic);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue