aboutsummaryrefslogtreecommitdiff
path: root/test/cast-bool-char.qbe
diff options
context:
space:
mode:
Diffstat (limited to 'test/cast-bool-char.qbe')
-rw-r--r--test/cast-bool-char.qbe9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/cast-bool-char.qbe b/test/cast-bool-char.qbe
index 81d4eba..0e92c87 100644
--- a/test/cast-bool-char.qbe
+++ b/test/cast-bool-char.qbe
@@ -2,9 +2,8 @@ export
function w $main() {
@start.1
@body.2
- %.1 =w copy 256
- %.2 =w extub %.1
- %.3 =w cnew %.2, 0
- %.4 =w extub %.3
- ret %.4
+ %.1 =w extub 256
+ %.2 =w cnew %.1, 0
+ %.3 =w extub %.2
+ ret %.3
}