mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-19 09:26:45 +00:00

This patch makes a further attempt to fix the tests broken by the previous revision by ensuring that the command line for the modified Dexter tests use -std=gnu++11, in keeping with the old build script. This reverts commit 5647f2908de90fe07b0805e988cd2e91a1751928.
41 lines
980 B
C++
41 lines
980 B
C++
// This ensures that DW_OP_deref is inserted when necessary, such as when NRVO
|
|
// of a string object occurs in C++.
|
|
//
|
|
// REQUIRES: system-windows
|
|
//
|
|
// RUN: %clang_cl /Z7 /Zi %s -o %t
|
|
// RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'dbgeng' -- %s
|
|
|
|
struct string {
|
|
string() {}
|
|
string(int i) : i(i) {}
|
|
~string() {}
|
|
int i = 0;
|
|
};
|
|
string get_string() {
|
|
string unused;
|
|
string result = 3;
|
|
return result; // DexLabel('readresult1')
|
|
}
|
|
void some_function(int) {}
|
|
struct string2 {
|
|
string2() = default;
|
|
string2(string2 &&other) { i = other.i; }
|
|
int i;
|
|
};
|
|
string2 get_string2() {
|
|
string2 result;
|
|
result.i = 5;
|
|
some_function(result.i);
|
|
// Test that the debugger can get the value of result after another
|
|
// function is called.
|
|
return result; // DexLabel('readresult2')
|
|
}
|
|
int main() {
|
|
get_string();
|
|
get_string2();
|
|
}
|
|
|
|
// DexExpectWatchValue('result.i', 3, on_line=ref('readresult1'))
|
|
// DexExpectWatchValue('result.i', 5, on_line=ref('readresult2'))
|