diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-09-15 22:30:29 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-09-15 22:30:29 +0000 |
commit | 87f540608106f28d9319b2148eb1b00192e020c2 (patch) | |
tree | ee908c8d7cb760ea14e8dc105a1b8e7e006c3793 /clang/test/CXX/basic/basic.stc/basic.stc.dynamic | |
parent | e26d4e49dfba5b86f1cac31e89ac55117da122fb (diff) | |
download | bcm5719-llvm-87f540608106f28d9319b2148eb1b00192e020c2.tar.gz bcm5719-llvm-87f540608106f28d9319b2148eb1b00192e020c2.zip |
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.
llvm-svn: 81939
Diffstat (limited to 'clang/test/CXX/basic/basic.stc/basic.stc.dynamic')
-rw-r--r-- | clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-nodef.cpp | 7 | ||||
-rw-r--r-- | clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp | 25 |
2 files changed, 32 insertions, 0 deletions
diff --git a/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-nodef.cpp b/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-nodef.cpp new file mode 100644 index 00000000000..b6b3e24bd85 --- /dev/null +++ b/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-nodef.cpp @@ -0,0 +1,7 @@ +// RUN: clang -fsyntax-only -verify %s + +int *use_new(int N) { + return new int [N]; +} + +int std = 17; diff --git a/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp b/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp new file mode 100644 index 00000000000..f3499e4286b --- /dev/null +++ b/clang/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(); |