projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
260f587
)
runtime: Correct test for morestack.S.
author
Ian Lance Taylor
<ian@gcc.gnu.org>
Fri, 1 Feb 2013 05:49:14 +0000
(
05:49
+0000)
committer
Ian Lance Taylor
<ian@gcc.gnu.org>
Fri, 1 Feb 2013 05:49:14 +0000
(
05:49
+0000)
From-SVN: r195640
libgo/runtime/go-callers.c
patch
|
blob
|
history
diff --git
a/libgo/runtime/go-callers.c
b/libgo/runtime/go-callers.c
index c20dbf356104eb0c227c786289f2f200c47d6f6b..9afba62cc992a2359436cdec2fe1f30661f0cc16 100644
(file)
--- a/
libgo/runtime/go-callers.c
+++ b/
libgo/runtime/go-callers.c
@@
-49,7
+49,7
@@
callback (void *data, uintptr_t pc, const char *filename, int lineno,
p = strrchr (filename, '/');
if (p == NULL)
p = filename;
- if (__builtin_strncmp (p, "
morestack.S", 11
) == 0)
+ if (__builtin_strncmp (p, "
/morestack.S", 12
) == 0)
return 0;
}