Skip to content

Commit fb2632e

Browse files
committed
Address comment.
1 parent 8c051a7 commit fb2632e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libc/src/math/generic/atan2f_float.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ LLVM_LIBC_FUNCTION(float, atan2f, (float y, float x)) {
190190
den *= 0x1.0p32f;
191191
} else if (scale_down) {
192192
den *= 0x1.0p-32f;
193-
if (!scale_up)
194-
num *= 0x1.0p-32f;
193+
num *= 0x1.0p-32f;
195194
}
196195

197196
min_abs = FPBits(num).uintval();

0 commit comments

Comments
 (0)