From: Devang Patel Date: Thu, 6 Jan 2011 21:40:22 +0000 (+0000) Subject: test case for r122971. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=150d2df7b659105cfbab39cc85af225391952815;p=clang test case for r122971. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122972 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-large-constant.cpp b/test/CodeGenCXX/debug-info-large-constant.cpp new file mode 100644 index 0000000000..43f0463ac4 --- /dev/null +++ b/test/CodeGenCXX/debug-info-large-constant.cpp @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -g %s -o /dev/null +// PR 8913 + +typedef __uint128_t word128; +static const word128 m126 = 0xffffffffffffffffULL; +word128 foo() { + return m126; +}