aboutsummaryrefslogtreecommitdiff
path: root/debuginfo-tests/nrvo-string.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-11-16 18:26:20 +0000
committerZachary Turner <zturner@google.com>2017-11-16 18:26:20 +0000
commit5e420717a1c4d9b25c645362f92dc02ccf2c5977 (patch)
treee921704288f4fd9a5ce7904c3083bdd20fdce4c9 /debuginfo-tests/nrvo-string.cpp
parent2139ed638b7c14eff603ba6b3a67753fe5020063 (diff)
downloadllvm-5e420717a1c4d9b25c645362f92dc02ccf2c5977.zip
llvm-5e420717a1c4d9b25c645362f92dc02ccf2c5977.tar.gz
llvm-5e420717a1c4d9b25c645362f92dc02ccf2c5977.tar.bz2
Resubmit "Refactor debuginfo-tests"
This was reverted due to some failures on specific darwin buildbots, the issue being that the new lit configuration was not setting the SDKROOT environment variable. We've tested a fix locally and confirmed that it works, so this patch resubmits everything with the fix applied. llvm-svn: 318435
Diffstat (limited to 'debuginfo-tests/nrvo-string.cpp')
-rw-r--r--debuginfo-tests/nrvo-string.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/debuginfo-tests/nrvo-string.cpp b/debuginfo-tests/nrvo-string.cpp
deleted file mode 100644
index 18acebb..0000000
--- a/debuginfo-tests/nrvo-string.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// This ensures that DW_OP_deref is inserted when necessary, such as when NRVO
-// of a string object occurs in C++.
-//
-// RUN: %clangxx -O0 -fno-exceptions %target_itanium_abi_host_triple %s -o %t.out -g
-// RUN: %test_debuginfo %s %t.out
-// RUN: %clangxx -O1 -fno-exceptions %target_itanium_abi_host_triple %s -o %t.out -g
-// RUN: %test_debuginfo %s %t.out
-//
-// PR34513
-
-struct string {
- string() {}
- string(int i) : i(i) {}
- ~string() {}
- int i = 0;
-};
-string get_string() {
- string unused;
- string result = 3;
-// DEBUGGER: break 21
- return result;
-}
-int main() { get_string(); }
-
-// DEBUGGER: r
-// DEBUGGER: print result.i
-// CHECK: = 3