aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-09-15 22:30:29 +0000
committerDouglas Gregor <dgregor@apple.com>2009-09-15 22:30:29 +0000
commit7adb10fa317cd7eacb0959f775e77353d4f24ad1 (patch)
tree80296249b2d8d4f099fd9e8646743e59f91f342a /test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp
parent291fbde2da2e022e47127472f3b5be8747d22c27 (diff)
When implicitly declaring operators new, new[], delete, and delete[],
give them the appropriate exception specifications. This, unfortunately, requires us to maintain and/or implicitly generate handles to namespace "std" and the class "std::bad_alloc". However, every other approach I've come up with was more hackish, and this standard requirement itself is quite the hack. Fixes PR4829. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81939 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp')
-rw-r--r--test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp b/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp
new file mode 100644
index 0000000000..f3499e4286
--- /dev/null
+++ b/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp
@@ -0,0 +1,25 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+int *use_new(int N) {
+ if (N == 1)
+ return new int;
+
+ return new int [N];
+}
+
+void use_delete(int* ip, int N) {
+ if (N == 1)
+ delete ip;
+ else
+ delete [] ip;
+}
+
+namespace std {
+ class bad_alloc { };
+
+ typedef __SIZE_TYPE__ size_t;
+}
+
+void* operator new(std::size_t) throw(std::bad_alloc);
+void* operator new[](std::size_t) throw(std::bad_alloc);
+void operator delete(void*) throw();
+void operator delete[](void*) throw();