summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/static-init.cpp
diff options
context:
space:
mode:
authorNuno Lopes <nunoplopes@sapo.pt>2009-12-16 16:59:22 +0000
committerNuno Lopes <nunoplopes@sapo.pt>2009-12-16 16:59:22 +0000
commit13c88c7269f7c2dac47d57534b51480e58e054e5 (patch)
tree549e13cd71b70b44e1ddb418d9ee60e41eb5b59d /clang/test/CodeGenCXX/static-init.cpp
parent59ae3c854240108b28a0b3cb0aa1e9fb4c90e5ff (diff)
downloadbcm5719-llvm-13c88c7269f7c2dac47d57534b51480e58e054e5.tar.gz
bcm5719-llvm-13c88c7269f7c2dac47d57534b51480e58e054e5.zip
implement PR5654: add -fassume-sane-operator-new, which is enabled by default, and adds the malloc attribute to the global function new() and to the overloaded new operators.
feel free to chage the name to this lengthy argument llvm-svn: 91543
Diffstat (limited to 'clang/test/CodeGenCXX/static-init.cpp')
-rw-r--r--clang/test/CodeGenCXX/static-init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/static-init.cpp b/clang/test/CodeGenCXX/static-init.cpp
index 2ad6e9411f4..cbd90e78940 100644
--- a/clang/test/CodeGenCXX/static-init.cpp
+++ b/clang/test/CodeGenCXX/static-init.cpp
@@ -11,7 +11,7 @@ void f() {
}
void g() {
- // CHECK: call i8* @_Znwm(i64 1)
+ // CHECK: call noalias i8* @_Znwm(i64 1)
// CHECK: call void @_ZN1AC1Ev(
static A& a = *new A;
}
OpenPOWER on IntegriCloud