Bug ID 38925
Summary Missing support for expresions with int128_t
Product lldb
Version unspecified
Hardware PC
OS Linux
Status NEW
Severity enhancement
Priority P
Component All Bugs
Assignee lldb-dev@lists.llvm.org
Reporter david.bolvansky@gmail.com
CC llvm-bugs@lists.llvm.org
Using LLDB 6.0
clang main.c -g3
int main(void)
{
__int128_t n = 1;
n = n + n;
return n;
}
(lldb) print n
(__int128_t) $1 = 1
(lldb) print n + 6
error: supposed to interpret, but failed: Interpreter couldn't resolve a value
during execution