aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-05-06 17:48:38 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-05-06 17:48:38 -0700
commit7dd33d431612cd8511eaea8dcabdca44b354e14b (patch)
treed1381cfd8da2bfcacc00cbf84e1570bffda3503e /src
parent9b9ea405ef1d11af377057067118b07a021b990f (diff)
downloadzig-7dd33d431612cd8511eaea8dcabdca44b354e14b.tar.gz
zig-7dd33d431612cd8511eaea8dcabdca44b354e14b.zip
stage2: fix compile errors in test harness
Diffstat (limited to 'src')
-rw-r--r--src/test.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test.zig b/src/test.zig
index e08f9da37d..03c1ee0dcd 100644
--- a/src/test.zig
+++ b/src/test.zig
@@ -135,7 +135,7 @@ pub const TestContext = struct {
/// to Executable.
output_mode: std.builtin.OutputMode,
updates: std.ArrayList(Update),
- object_format: ?std.builtin.ObjectFormat = null,
+ object_format: ?std.Target.ObjectFormat = null,
emit_h: bool = false,
llvm_backend: bool = false,