diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-12-28 15:07:21 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-28 15:07:21 -0800 |
| commit | 2df2f0020f4ddc41b3b914cd17efcb403cf0f6ad (patch) | |
| tree | 8826f40cd08a1cbe945e82bc3f2495a0ed42ad7d /src/Compilation.zig | |
| parent | f75d4cbe56f9f8212581f00700600a57ce545ba1 (diff) | |
| parent | ec3aedffb173845b3fe6f7559e06e1bc3cfde6f7 (diff) | |
| download | zig-2df2f0020f4ddc41b3b914cd17efcb403cf0f6ad.tar.gz zig-2df2f0020f4ddc41b3b914cd17efcb403cf0f6ad.zip | |
Merge pull request #7498 from FireFox317/stage2-llvm
stage2: add initial impl of LLVM backend in self-hosted compiler
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 885ecbb95c..26beeccd9e 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -2106,7 +2106,7 @@ pub fn addCCArgs( try argv.append("-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS"); } - const llvm_triple = try @import("codegen/llvm.zig").targetTriple(arena, target); + const llvm_triple = try @import("llvm_backend.zig").targetTriple(arena, target); try argv.appendSlice(&[_][]const u8{ "-target", llvm_triple }); switch (ext) { |
