Commit a1948282 by Ian Lance Taylor

runtime: Correct test for morestack.S.

From-SVN: r195640
parent 260f587c
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment