diff options
Diffstat (limited to 'llvm/tools/llvm-xray/xray-account.cc')
-rw-r--r-- | llvm/tools/llvm-xray/xray-account.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvm-xray/xray-account.cc b/llvm/tools/llvm-xray/xray-account.cc index 0ba6cad5cca..7b684aad693 100644 --- a/llvm/tools/llvm-xray/xray-account.cc +++ b/llvm/tools/llvm-xray/xray-account.cc @@ -418,6 +418,9 @@ template <> struct format_provider<llvm::xray::RecordTypes> { case RecordTypes::ENTER: Stream << "enter"; break; + case RecordTypes::ENTER_ARG: + Stream << "enter-arg"; + break; case RecordTypes::EXIT: Stream << "exit"; break; |