Changeset a24df004 in mainline
- Timestamp:
- 2018-03-18T13:05:53Z (7 years ago)
- Parents:
- 973be387 (diff), c6a1768 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jakub Jermář <jakub@…> (2018-03-18 13:05:53)
- git-committer:
- GitHub <noreply@…> (2018-03-18 13:05:53)
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r973be387 ra24df004 238 238 $(USPACE_PATH)/lib/label/test-liblabel \ 239 239 $(USPACE_PATH)/lib/posix/test-libposix \ 240 $(USPACE_PATH)/lib/softint/test-libsoftint \ 240 241 $(USPACE_PATH)/lib/uri/test-liburi \ 241 242 $(USPACE_PATH)/drv/bus/usb/xhci/test-xhci \ -
uspace/lib/pcut/include/pcut/asserts.h
r973be387 ra24df004 186 186 #define PCUT_ASSERT_INT_EQUALS(expected, actual) \ 187 187 do {\ 188 long pcut_expected_eval = (expected); \189 long pcut_actual_eval = (actual); \188 long long pcut_expected_eval = (expected); \ 189 long long pcut_actual_eval = (actual); \ 190 190 if (pcut_expected_eval != pcut_actual_eval) { \ 191 PCUT_ASSERTION_FAILED("Expected <%l d> but got <%ld> (%s != %s)", \191 PCUT_ASSERTION_FAILED("Expected <%lld> but got <%lld> (%s != %s)", \ 192 192 pcut_expected_eval, pcut_actual_eval, \ 193 193 #expected, #actual); \ -
uspace/lib/softint/Makefile
r973be387 ra24df004 39 39 generic/shift.c 40 40 41 TEST_SOURCES = \ 42 test/main.c \ 43 test/multiplication.c 44 41 45 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/softint/generic/multiplication.c
r973be387 ra24df004 64 64 } 65 65 66 long __muldi3(long a, long b) 67 { 68 return (long) __multi3(a, b); 69 } 70 66 71 /** Emulate multiplication of two 64-bit long long integers. 67 72 * 68 73 */ 69 long long __mul di3(long long a, long long b)74 long long __multi3(long long a, long long b) 70 75 { 71 76 char neg = 0; -
uspace/lib/softint/include/multiplication.h
r973be387 ra24df004 37 37 #define __SOFTINT_MULTIPLICATION_H__ 38 38 39 extern long __muldi3(long, long); 40 39 41 /* 64 bit multiplication */ 40 extern long long __mul di3(long long, long long);42 extern long long __multi3(long long, long long); 41 43 42 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.