aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/debug-info-static-const-fp.c
AgeCommit message (Collapse)AuthorFilesLines
2016-12-20Update for LLVM global variable debug info API change.Adrian Prantl1-11/+19
This reapplies r289921. llvm-svn: 290155
2016-12-16Revert "Update for LLVM global variable debug info API change."Adrian Prantl1-19/+11
This reverts commit r289921. llvm-svn: 289984
2016-12-16Update for LLVM global variable debug info API change.Adrian Prantl1-11/+19
llvm-svn: 289921
2016-12-16Revert "Update for LLVM global variable debug info API change."Adrian Prantl1-19/+11
This reverts commit 289901 while investigating bot breakage. llvm-svn: 289908
2016-12-16Update for LLVM global variable debug info API change.Adrian Prantl1-11/+19
llvm-svn: 289901
2016-12-14[DebugInfo] Restore test case for long double constants.David Gross1-8/+23
Summary: D27549 (partial fix for PR26619) emits a constant value in the debug metadata for a floating-point static const that does not exceed 64 bits in size. Whether or not a long double exceeds 64 bits in size depends on the target. Modify the test case so that it expects a constant value for long double if and only if the long double is no larger than 64 bits. Reviewers: cfe-commits, probinson Differential Revision: https://reviews.llvm.org/D27597 llvm-svn: 289686
2016-12-08[DebugInfo] Relax test case for long double constants.David Gross1-1/+5
Summary: D27549 (partial fix for PR26619) emits a constant value in the debug metadata for a floating-point static const that does not exceed 64 bits in size. The regression test accompanying that fix assumes that a long double exceeds 64 bits in size and hence does not get a constant value in the debug metadata. However, for some targets -- such as "--target=hexagon-unknown-elf" -- a long double does not exceed 64 bits in size, and hence the test fails. As a temporary fix, modify the regression test to no longer inspect the debug metadata for a long double. Reviewers: cfe-commits, probinson Differential Revision: https://reviews.llvm.org/D27589 llvm-svn: 289103
2016-12-08[DebugInfo] Add support for __fp16, float, and double constants.David Gross1-0/+27
Summary: Partial fix for PR26619. Prior to this change, a DIGlobalVariable corresponding to a static const was marked with an expression corresponding to its constant value only if it is of integral type. With this change, we now do the same if it is of __fp16, float, or double type (that is, floating-point types that do not exceed 64 bits in size, and hence are supported easily by the existing LLVM machinery for creating constant expressions in debug info). Reviewers: llvm-commits Differential Revision: https://reviews.llvm.org/D27549 llvm-svn: 289094