target: map zig ppc32 → llvm ppc

- llvm does not accept `ppc32` as a CPU type

closes #7947
This commit is contained in:
Michael Dusan 2021-02-04 12:39:06 -05:00 committed by Andrew Kelley
parent 2d447b57cc
commit 300ebbd560

View File

@ -760,7 +760,7 @@ pub const cpu = struct {
};
pub const ppc32 = CpuModel{
.name = "ppc32",
.llvm_name = "ppc32",
.llvm_name = "ppc",
.features = featureSet(&[_]Feature{
.hard_float,
}),