runtime: Correct test for morestack.S.

From-SVN: r195640
This commit is contained in:
Ian Lance Taylor 2013-02-01 05:49:14 +00:00
parent 260f587c3a
commit a1948282e8

View File

@ -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;
}