diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-02-04 20:33:35 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-02-04 20:33:35 +0000 |
commit | c0f00a1f3893e66e43bcda26c53b2589baf96369 (patch) | |
tree | 078663b59b9f7813c7f485add3d9a5fa4f2789c0 /lldb/packages/Python/lldbsuite/test | |
parent | 2df59c50688c122bbcae7467d3eaf862c3ea3088 (diff) | |
download | bcm5719-llvm-c0f00a1f3893e66e43bcda26c53b2589baf96369.tar.gz bcm5719-llvm-c0f00a1f3893e66e43bcda26c53b2589baf96369.zip |
Update stale comment in lang/c/struct_types/main.c
rdar://47322760
llvm-svn: 353087
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c b/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c index f166232b755..356f139c0b2 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c +++ b/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c @@ -26,7 +26,7 @@ int main (int argc, char const *argv[]) }; //% self.expect("frame variable pt.padding[0]", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["pt.padding[0] = "]) //% self.expect("frame variable pt.padding[1]", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["pt.padding[1] = "]) //% self.expect("expression -- (pt.padding[0])", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["(char)", " = "]) - //% self.expect("image lookup -t point_tag", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ['padding[]']) # Once rdar://problem/12566646 is fixed, this should display correctly + //% self.expect("image lookup -t point_tag", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ['padding[]']) struct {} empty; //% self.expect("frame variable empty", substrs = ["empty = {}"]) @@ -42,5 +42,5 @@ int main (int argc, char const *argv[]) int sum = sum_things(tts); //% self.expect("expression -- &pt == (struct point_tag*)0", substrs = ['false']) //% self.expect("expression -- sum_things(tts)", substrs = ['9']) - return 0; + return 0; } |