mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 16:36:40 +00: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':
|
||||
FDEPointerEncoding = Data.getU8(&Offset);
|
||||
break;
|
||||
case 'S':
|
||||
// Current frame is a signal trampoline.
|
||||
break;
|
||||
case 'z':
|
||||
if (i)
|
||||
ReportError(StartOffset,
|
||||
|
@ -565,7 +565,7 @@ int main(int argc, char **argv) {
|
||||
ShowChildren = true;
|
||||
|
||||
// Defaults to a.out if no filenames specified.
|
||||
if (InputFilenames.size() == 0)
|
||||
if (InputFilenames.empty())
|
||||
InputFilenames.push_back("a.out");
|
||||
|
||||
// Expand any .dSYM bundles to the individual object files contained therein.
|
||||
|
Loading…
Reference in New Issue
Block a user