Skip to content

Commit ff9c4ff

Browse files
author
Eric Liu
committedMay 18, 2018
[lldb] Fix compile warnings in r332702
Summary: - Fix #include path - Fix warning: ```` error: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Werror,-Wformat] ``` Reviewers: labath, javed.absar Differential Revision: https://reviews.llvm.org/D47072 llvm-svn: 332733
1 parent db53a52 commit ff9c4ff

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#endif
3030

3131
// Project includes
32-
#include "ARM_DWARF_Registers.h"
32+
#include "Utility/ARM_DWARF_Registers.h"
3333
#include "Utility/ARM_ehframe_Registers.h"
3434

3535
#include "llvm/ADT/STLExtras.h"

‎lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#endif
3434

3535
// Project includes
36-
#include "ARM64_DWARF_Registers.h"
36+
#include "Utility/ARM64_DWARF_Registers.h"
3737

3838
using namespace lldb;
3939
using namespace lldb_private;
@@ -293,8 +293,9 @@ int RegisterContextDarwin_arm64::WriteRegisterSet(uint32_t set) {
293293
void RegisterContextDarwin_arm64::LogDBGRegisters(Log *log, const DBG &dbg) {
294294
if (log) {
295295
for (uint32_t i = 0; i < 16; i++)
296-
log->Printf("BVR%-2u/BCR%-2u = { 0x%8.8llx, 0x%8.8llx } WVR%-2u/WCR%-2u "
297-
"= { 0x%8.8llx, 0x%8.8llx }",
296+
log->Printf("BVR%-2u/BCR%-2u = { 0x%8.8" PRIu64 ", 0x%8.8" PRIu64
297+
" } WVR%-2u/WCR%-2u "
298+
"= { 0x%8.8" PRIu64 ", 0x%8.8" PRIu64 " }",
298299
i, i, dbg.bvr[i], dbg.bcr[i], i, i, dbg.wvr[i], dbg.wcr[i]);
299300
}
300301
}

0 commit comments

Comments
 (0)
Please sign in to comment.