Files
clang-p2996/lldb/source/Symbol
Jonas Devlieghere 65d2d5bad4 Handle typeof() expressions
Before this patch, LLDB was not able to evaluate expressions that
resulted in a value with a typeof- or decltype-type. This patch fixes
that.

Before:
  (lldb) p int i; __typeof__(i) j = 1; j
  (typeof (i)) $0 =

After:
  (lldb) p int i; __typeof__(i) j = 1; j
  (typeof (i)) $0 = 1

Differential revision: https://reviews.llvm.org/D43471

rdar://37461520

llvm-svn: 325568
2018-02-20 10:15:08 +00:00
..
2017-03-03 20:56:28 +00:00
2017-02-02 21:39:50 +00:00
2017-10-23 23:14:17 +00:00
2017-11-02 21:35:26 +00:00
2017-03-03 20:56:28 +00:00