Handle __builtin_extract_return_addr

Our architectures don't need anything special for this
builtin, just pass through the argument.
This commit is contained in:
Michael Matz
2016-09-26 21:52:57 +02:00
parent fb933ae0eb
commit ce55d03eef
2 changed files with 5 additions and 0 deletions

View File

@ -3027,6 +3027,8 @@ void builtin_test(void)
printf("bce: %d\n", i);
i = sizeof (__builtin_choose_expr (1, ll, s));
printf("bce: %d\n", i);
i = sizeof (__builtin_choose_expr (0, ll, s));
printf("bce: %d\n", i);
printf("bera: %p\n", __builtin_extract_return_addr((void*)43));
}