mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[DebugInfo] Accept S
in augmentation strings in CIE.
glibc libc.a(sigaction.o) compiled from sysdeps/unix/sysv/linux/x86_64/sigaction.c uses "zRS". llvm-svn: 331738
This commit is contained in:
parent
dc77820944
commit
84a6cf0ade
@ -430,6 +430,9 @@ void DWARFDebugFrame::parse(DWARFDataExtractor Data) {
|
|||||||
case 'R':
|
case 'R':
|
||||||
FDEPointerEncoding = Data.getU8(&Offset);
|
FDEPointerEncoding = Data.getU8(&Offset);
|
||||||
break;
|
break;
|
||||||
|
case 'S':
|
||||||
|
// Current frame is a signal trampoline.
|
||||||
|
break;
|
||||||
case 'z':
|
case 'z':
|
||||||
if (i)
|
if (i)
|
||||||
ReportError(StartOffset,
|
ReportError(StartOffset,
|
||||||
|
@ -565,7 +565,7 @@ int main(int argc, char **argv) {
|
|||||||
ShowChildren = true;
|
ShowChildren = true;
|
||||||
|
|
||||||
// Defaults to a.out if no filenames specified.
|
// Defaults to a.out if no filenames specified.
|
||||||
if (InputFilenames.size() == 0)
|
if (InputFilenames.empty())
|
||||||
InputFilenames.push_back("a.out");
|
InputFilenames.push_back("a.out");
|
||||||
|
|
||||||
// Expand any .dSYM bundles to the individual object files contained therein.
|
// Expand any .dSYM bundles to the individual object files contained therein.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user