diff options
author | Shafik Yaghmour <syaghmour@apple.com> | 2019-09-30 16:57:35 +0000 |
---|---|---|
committer | Shafik Yaghmour <syaghmour@apple.com> | 2019-09-30 16:57:35 +0000 |
commit | 926f55706605f8e1b8a8598448058e6a1875d92c (patch) | |
tree | 7c13a3abee6edd1904b539b7b3c0551276783de3 /lldb/packages/Python/lldbsuite | |
parent | ffac4e860329bccb5782c83e080d89d6d02a8a7a (diff) | |
download | bcm5719-llvm-926f55706605f8e1b8a8598448058e6a1875d92c.tar.gz bcm5719-llvm-926f55706605f8e1b8a8598448058e6a1875d92c.zip |
[lldb][NFC] Updating test to reflect made by D67966
Summary:
D67966 changes the output when dumping DWARF expressions and this updates basic_entry_values_x86_64 test to reflect this change.
llvm-svn: 373229
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp b/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp index d49ed4985cc..5a38376b680 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp @@ -31,7 +31,7 @@ void func1(int &sink, int x) { DESTROY_RSI; //% self.filecheck("image lookup -va $pc", "main.cpp", "-check-prefix=FUNC1-DESC") - // FUNC1-DESC: name = "x", type = "int", location = DW_OP_entry_value( rsi) + // FUNC1-DESC: name = "x", type = "int", location = DW_OP_entry_value(DW_OP_reg4 RSI) ++sink; } |