From 26997220648bba534101ddca61ac164ad850fdf8 Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Thu, 5 Mar 2015 14:43:15 +0000 Subject: [PATCH] Fix -Woverflow warning in unittest. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231368 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp b/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp index be78f116ce4..efcfcc0a9dc 100644 --- a/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp +++ b/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp @@ -97,7 +97,7 @@ TEST(DWARFFormValue, SignedConstantForms) { // Check that we can handle big positive values, but that we return // an error just over the limit. auto UMax = createULEBFormValue(LLONG_MAX); - auto TooBig = createULEBFormValue(LLONG_MAX + 1); + auto TooBig = createULEBFormValue(uint64_t(LLONG_MAX) + 1); EXPECT_EQ(UMax.getAsSignedConstant().getValue(), LLONG_MAX); EXPECT_EQ(TooBig.getAsSignedConstant().hasValue(), false); -- 2.34.1