diff options
Diffstat (limited to 'test/CodeGenCXX/delete-two-arg.cpp')
-rw-r--r-- | test/CodeGenCXX/delete-two-arg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/delete-two-arg.cpp b/test/CodeGenCXX/delete-two-arg.cpp index d6bdb09..5358747 100644 --- a/test/CodeGenCXX/delete-two-arg.cpp +++ b/test/CodeGenCXX/delete-two-arg.cpp @@ -3,4 +3,4 @@ struct A { void operator delete(void*,__typeof(sizeof(int))); int x; }; void a(A* x) { delete x; } -// CHECK: call void @_ZN1AdlEPvj(i8* %0, i32 4) +// CHECK: call void @_ZN1AdlEPvj(i8* %{{.*}}, i32 4) |