Open Quuxplusone opened 5 years ago
Bugzilla Link | PR43719 |
Status | NEW |
Importance | P normal |
Reported by | Devin Hussey (husseydevin@gmail.com) |
Reported on | 2019-10-18 22:30:10 -0700 |
Last modified on | 2019-10-18 22:53:11 -0700 |
Version | trunk |
Hardware | Other All |
CC | arnaud.degrandmaison@arm.com, husseydevin@gmail.com, llvm-bugs@lists.llvm.org, smithp352@googlemail.com, Ties.Stuij@arm.com |
Fixed by commit(s) | |
Attachments | |
Blocks | |
Blocked by | |
See also |
Typo: If it wasn't clear, the code should be this.
define <2 x i64> @zext_v2xi32(<2 x i32> %vec)
{
%extended = zext <2 x i32> %vec to <2 x i64>
ret <2 x i64> %extended
}
And the assembly should probably output this
zext_v2i32:
mov w0, w0
mov w1, w1
ret