1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

remove FIXME comments (fixed with r277738)

llvm-svn: 277744
This commit is contained in:
Sanjay Patel 2016-08-04 18:14:02 +00:00
parent d2e71c8b48
commit f43971979f

View File

@ -1015,7 +1015,6 @@ define i1 @icmp_eq_const(i32 %a) {
ret i1 %c
}
; FIXME: Vectors should fold the same way.
define <2 x i1> @icmp_eq_const_vec(<2 x i32> %a) {
; CHECK-LABEL: @icmp_eq_const_vec(
; CHECK-NEXT: ret <2 x i1> zeroinitializer
@ -1034,7 +1033,6 @@ define i1 @icmp_ne_const(i32 %a) {
ret i1 %c
}
; FIXME: Vectors should fold the same way.
define <2 x i1> @icmp_ne_const_vec(<2 x i32> %a) {
; CHECK-LABEL: @icmp_ne_const_vec(
; CHECK-NEXT: ret <2 x i1> <i1 true, i1 true>