summaryrefslogtreecommitdiff
path: root/external/bsd/llvm/dist/clang/test/CodeGenCXX/DynArrayInit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'external/bsd/llvm/dist/clang/test/CodeGenCXX/DynArrayInit.cpp')
-rw-r--r--external/bsd/llvm/dist/clang/test/CodeGenCXX/DynArrayInit.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/external/bsd/llvm/dist/clang/test/CodeGenCXX/DynArrayInit.cpp b/external/bsd/llvm/dist/clang/test/CodeGenCXX/DynArrayInit.cpp
deleted file mode 100644
index fb865e35af4..00000000000
--- a/external/bsd/llvm/dist/clang/test/CodeGenCXX/DynArrayInit.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -O3 -emit-llvm -o - %s | FileCheck %s
-// PR7490
-
-// CHECK-LABEL: define signext i8 @_Z2f0v
-// CHECK: ret i8 0
-// CHECK: }
-inline void* operator new[](unsigned long, void* __p) { return __p; }
-static void f0_a(char *a) {
- new (a) char[4]();
-}
-char f0() {
- char a[4];
- f0_a(a);
- return a[0] + a[1] + a[2] + a[3];
-}