summaryrefslogtreecommitdiff
path: root/external/bsd/llvm/dist/clang/test/CodeGenCXX/constructor-init-reference.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'external/bsd/llvm/dist/clang/test/CodeGenCXX/constructor-init-reference.cpp')
-rw-r--r--external/bsd/llvm/dist/clang/test/CodeGenCXX/constructor-init-reference.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/external/bsd/llvm/dist/clang/test/CodeGenCXX/constructor-init-reference.cpp b/external/bsd/llvm/dist/clang/test/CodeGenCXX/constructor-init-reference.cpp
deleted file mode 100644
index 61f426da51f..00000000000
--- a/external/bsd/llvm/dist/clang/test/CodeGenCXX/constructor-init-reference.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
-
-int x;
-struct A {
- int& y;
- A() : y(x) {}
-};
-A z;
-// CHECK: store i32* @x, i32**