mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 13:31:04 +08:00
runtime: Correct test for morestack.S.
From-SVN: r195640
This commit is contained in:
parent
260f587c3a
commit
a1948282e8
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user