aboutsummaryrefslogtreecommitdiff
path: root/src/target.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-02-27 02:51:35 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-02-27 02:51:35 -0700
commit280195038a8f3a364ff95adb5d3799f586e5b695 (patch)
treeb80510e9735b396dd6b79cad984ee8bd50aebc46 /src/target.zig
parent9e8943736e34d28d1ea62229d6ca708303cd0eba (diff)
downloadzig-280195038a8f3a364ff95adb5d3799f586e5b695.tar.gz
zig-280195038a8f3a364ff95adb5d3799f586e5b695.zip
std.Target: add powerpcle
Diffstat (limited to 'src/target.zig')
-rw-r--r--src/target.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target.zig b/src/target.zig
index c1f8dd6247..2610acf862 100644
--- a/src/target.zig
+++ b/src/target.zig
@@ -246,6 +246,7 @@ pub fn archToLLVM(arch_tag: std.Target.Cpu.Arch) llvm.ArchType {
.mips64el => .mips64el,
.msp430 => .msp430,
.powerpc => .ppc,
+ .powerpcle => .ppcle,
.powerpc64 => .ppc64,
.powerpc64le => .ppc64le,
.r600 => .r600,