aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/llvm.zig
diff options
context:
space:
mode:
authorStevie Hryciw <codroid@gmail.com>2022-11-14 20:44:31 -0800
committerIsaac Freund <mail@isaacfreund.com>2022-11-18 19:22:42 +0000
commit04f3067a7921a51bd55870f3138220fd66426e33 (patch)
tree158494e96381fe48304fef102d36a9431eef9642 /src/codegen/llvm.zig
parente999f9f472f6b57214a8a66b69b8928ad28acbfe (diff)
downloadzig-04f3067a7921a51bd55870f3138220fd66426e33.tar.gz
zig-04f3067a7921a51bd55870f3138220fd66426e33.zip
run zig fmt on everything checked by CI
Diffstat (limited to 'src/codegen/llvm.zig')
-rw-r--r--src/codegen/llvm.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig
index af9dcacf48..e16d5e5337 100644
--- a/src/codegen/llvm.zig
+++ b/src/codegen/llvm.zig
@@ -10723,7 +10723,7 @@ fn ccAbiPromoteInt(
else => {},
}
const int_info = switch (ty.zigTypeTag()) {
- .Bool => Type.@"u1".intInfo(target),
+ .Bool => Type.u1.intInfo(target),
.Int, .Enum, .ErrorSet => ty.intInfo(target),
else => return null,
};