https://bugs.llvm.org/show_bug.cgi?id=38925
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.bolvan...@gmail.com
CC: llvm-b...@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
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
lldb-dev mailing list
lldb-dev@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev