Files
clang-p2996/lldb/test/API/commands/expression/rdar44436068/main.c
Dave Lee 4076664228 [lldb][test] Replace use of p with expression (NFC)
In API tests, replace use of the `p` alias with the `expression` command.

To avoid conflating tests of the alias with tests of the expression command,
this patch canonicalizes to the use `expression`.

Differential Revision: https://reviews.llvm.org/D141539
2023-01-25 11:03:58 -08:00

9 lines
298 B
C

int main(void)
{
__int128_t n = 1;
n = n + n;
return n; //%self.expect("expression n", substrs=['(__int128_t) $0 = 2'])
//%self.expect("expression n + 6", substrs=['(__int128_t) $1 = 8'])
//%self.expect("expression n + n", substrs=['(__int128_t) $2 = 4'])
}