diff options
Diffstat (limited to 'clang/test/CodeGenCXX/new-alias.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/new-alias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/new-alias.cpp b/clang/test/CodeGenCXX/new-alias.cpp index 4afd942e3cd..b21638abbfb 100644 --- a/clang/test/CodeGenCXX/new-alias.cpp +++ b/clang/test/CodeGenCXX/new-alias.cpp @@ -9,5 +9,5 @@ extern "C" char *something(long long x) { void *operator new(size_t) __attribute__((alias("something"))); // PR16715: don't assert here. -// CHECK: call noalias i8* @_Znwm(i64 4){{$}} +// CHECK: call i8* @_Znwm(i64 4){{$}} int *pr16715 = new int; |