aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
authorTravis Staloch <twostepted@gmail.com>2021-09-10 15:41:43 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-09-28 17:03:43 -0700
commit68050852fac6940d04e15900f135e6fc88845f9b (patch)
tree2e5a7e588bcb2b5354e2b9a027711513949e6f4f /src/codegen
parentfd8383545adc5f202e8098bd13b3bda3481ad235 (diff)
downloadzig-68050852fac6940d04e15900f135e6fc88845f9b.tar.gz
zig-68050852fac6940d04e15900f135e6fc88845f9b.zip
sat-arithmetic: minor formatting changes
Diffstat (limited to 'src/codegen')
-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 733984a9d6..cdd19146b5 100644
--- a/src/codegen/llvm.zig
+++ b/src/codegen/llvm.zig
@@ -1256,7 +1256,7 @@ pub const FuncGen = struct {
.xor => try self.airXor(inst),
.shl => try self.airShl(inst, false),
- .shl_sat => try self.airShl(inst, true),
+ .shl_sat => try self.airShl(inst, true),
.shr => try self.airShr(inst),
.cmp_eq => try self.airCmp(inst, .eq),