Skip to content

Commit 8e737d6

Browse files
authored
Merge pull request #786 from rust-lang/reg-vector-type
Implement reg vector type
2 parents 28d461d + f3ab60b commit 8e737d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/abi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ impl GccType for Reg {
8888
64 => cx.type_f64(),
8989
_ => bug!("unsupported float: {:?}", self),
9090
},
91-
RegKind::Vector => unimplemented!(), //cx.type_vector(cx.type_i8(), self.size.bytes()),
91+
RegKind::Vector => cx.type_vector(cx.type_i8(), self.size.bytes()),
9292
}
9393
}
9494
}

0 commit comments

Comments
 (0)