stage2+stage1: remove type parameter from bit builtins

Closes #12529
Closes #12511
Closes #6835
This commit is contained in:
Veikka Tuominen
2022-08-21 17:24:04 +03:00
parent 6c020cdb76
commit 62ff8871ed
55 changed files with 264 additions and 268 deletions

View File

@@ -1,9 +1,9 @@
export fn entry(x: f32) u32 {
return @popCount(f32, x);
return @popCount(x);
}
// error
// backend=stage2
// target=native
//
// :2:27: error: expected integer or vector, found 'f32'
// :2:22: error: expected integer or vector, found 'f32'