diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-04 20:33:56 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-04 20:33:56 +0000 |
commit | e25a2bd2e349528e48d3cc8dd287307029acf97b (patch) | |
tree | 5adb513cd90fe75dcded508491fef04646e97bea /lib/DebugInfo | |
parent | 9751b81fc97dcb6ecc4be4304ef8e6e8cf79f6e4 (diff) |
Fix a C++11 UDL conflict.
Still not fixed in the standard ;)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r-- | lib/DebugInfo/DWARFFormValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/DWARFFormValue.cpp b/lib/DebugInfo/DWARFFormValue.cpp index 1c7b9d7f49..ee2a3ab7b7 100644 --- a/lib/DebugInfo/DWARFFormValue.cpp +++ b/lib/DebugInfo/DWARFFormValue.cpp @@ -348,7 +348,7 @@ DWARFFormValue::dump(raw_ostream &OS, const DWARFCompileUnit *cu) const { } if (cu_relative_offset) - OS << format(" => {0x%8.8"PRIx64"}", (uvalue + (cu ? cu->getOffset() : 0))); + OS << format(" => {0x%8.8" PRIx64 "}", uvalue + (cu ? cu->getOffset() : 0)); } const char* |