Commit 5566d88
committed
Fix "undeclared identifier" error
This change is required to fix this error:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/stdio/printf_core/converter.cpp:9:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/stdio/printf_core/converter.h:12:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/stdio/printf_core/core_structs.h:13:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/__support/FPUtil/FPBits.h:17:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/__support/FPUtil/FloatProperties.h:12:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/__support/UInt128.h:12:
In file included from /local/mnt/workspace/upstream/llvm-project/libc/src/__support/UInt.h:17:
/local/mnt/workspace/upstream/llvm-project/libc/src/__support/integer_utils.h:51:13: error: use of undeclared identifier 'add_with_carry'
51 | auto r1 = add_with_carry(prod.lo, lo_hi.lo << 32, uint64_t(0));
| ^
/local/mnt/workspace/upstream/llvm-project/libc/src/__support/integer_utils.h:55:13: error: use of undeclared identifier 'add_with_carry'
55 | auto r2 = add_with_carry(prod.lo, hi_lo.lo << 32, uint64_t(0));
| ^1 parent 0f5b4b4 commit 5566d88
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
0 commit comments