aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-01-22 18:40:34 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-01-22 18:40:34 -0500
commit9845264a0bcb1347216a00dad0fd67fe79555485 (patch)
tree8d5cc2402164c29e90834b39c3273615ee810c6d /src/codegen.cpp
parent0c477f3c793d483c3917f08971b867e19c8c88a9 (diff)
downloadzig-9845264a0bcb1347216a00dad0fd67fe79555485.tar.gz
zig-9845264a0bcb1347216a00dad0fd67fe79555485.zip
aarch64: less feature-full baseline CPU
Diffstat (limited to 'src/codegen.cpp')
-rw-r--r--src/codegen.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index 7ad19fdfcb..123115ba2f 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -8795,6 +8795,7 @@ static void init(CodeGen *g) {
target_specific_features = stage2_cpu_features_get_llvm_features(g->zig_target->cpu_features);
}
if (g->verbose_llvm_cpu_features) {
+ fprintf(stderr, "name=%s triple=%s\n", buf_ptr(g->root_out_name), buf_ptr(&g->llvm_triple_str));
fprintf(stderr, "name=%s target_specific_cpu_args=%s\n", buf_ptr(g->root_out_name), target_specific_cpu_args);
fprintf(stderr, "name=%s target_specific_features=%s\n", buf_ptr(g->root_out_name), target_specific_features);
}