Skip to content

Commit

Permalink
[llvm-symbolizer][docs] Update --output-style=JSON example
Browse files Browse the repository at this point in the history
The fields output when using --output-style=JSON has changed but the
guide wasn't updated. This change fixes up the example.

Differential Revision: https://reviews.llvm.org/D115164
  • Loading branch information
gbreynoo committed Dec 7, 2021
1 parent 1f2e412 commit 9094a22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions llvm/docs/CommandGuide/llvm-symbolizer.rst
Expand Up @@ -289,7 +289,7 @@ OPTIONS
"FileName": "/tmp/test.cpp",
"FunctionName": "baz()",
"Line": 11,
"Source": "",
"StartAddress": "0x4004be",
"StartFileName": "/tmp/test.cpp",
"StartLine": 9
},
Expand All @@ -299,7 +299,7 @@ OPTIONS
"FileName": "/tmp/test.cpp",
"FunctionName": "main",
"Line": 15,
"Source": "",
"StartAddress": "0x4004be",
"StartFileName": "/tmp/test.cpp",
"StartLine": 14
}
Expand All @@ -315,7 +315,7 @@ OPTIONS
"FileName": "/tmp/test.cpp",
"FunctionName": "foo()",
"Line": 6,
"Source": "",
"StartAddress": "0x400486",
"StartFileName": "/tmp/test.cpp",
"StartLine": 5
}
Expand Down

0 comments on commit 9094a22

Please sign in to comment.