mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
cfbf0e3c5b
When Output_section::is_input_address_mapped is called we have entries for all dropped ranges, but not for all ranges.
24 lines
236 B
C++
24 lines
236 B
C++
#include <iostream>
|
|
#include <cstdlib>
|
|
|
|
void
|
|
foo()
|
|
{
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
try
|
|
{
|
|
throw(1);
|
|
}
|
|
catch(int)
|
|
{
|
|
std::cout << "caught" << std::endl;
|
|
exit(0);
|
|
}
|
|
std::cout << "failed" << std::endl;
|
|
exit(1);
|
|
}
|