Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(841)

Unified Diff: src/pkg/runtime/runtime.c

Issue 7504044: code review 7504044: runtime: faster hashmap implementation. (Closed)
Patch Set: diff -r 61fa5c7d741f https://code.google.com/p/go/ Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/pkg/runtime/hashmap.c ('K') | « src/pkg/runtime/runtime.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/runtime/runtime.c
===================================================================
--- a/src/pkg/runtime/runtime.c
+++ b/src/pkg/runtime/runtime.c
@@ -42,9 +42,9 @@
}
int32
-runtime·mcmp(byte *s1, byte *s2, uint32 n)
+runtime·mcmp(byte *s1, byte *s2, uintptr n)
{
- uint32 i;
+ uintptr i;
byte c1, c2;
for(i=0; i<n; i++) {
« src/pkg/runtime/hashmap.c ('K') | « src/pkg/runtime/runtime.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b