r326873 - Remove a placeholder

George Burgess IV via cfe-commits cfe-commits at lists.llvm.org
Tue Mar 6 21:02:27 PST 2018


Author: gbiv
Date: Tue Mar  6 21:02:27 2018
New Revision: 326873

URL: http://llvm.org/viewvc/llvm-project?rev=326873&view=rev
Log:
Remove a placeholder

...Running tests in the wrong directory will often make them seem to
pass. Oops. :)

Modified:
    cfe/trunk/test/CodeGenCXX/alloc-size.cpp

Modified: cfe/trunk/test/CodeGenCXX/alloc-size.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/alloc-size.cpp?rev=326873&r1=326872&r2=326873&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/alloc-size.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/alloc-size.cpp Tue Mar  6 21:02:27 2018
@@ -79,7 +79,7 @@ struct Foo {
 
 void *my_malloc(const Foo &, int N) __attribute__((alloc_size(2)));
 
-// CHECK-LABEL: define i32 lalala
+// CHECK-LABEL: define i32 @_ZN24alloc_size_with_cleanups6testItEv
 int testIt() {
   int *const p = (int *)my_malloc(Foo{}, 3);
   // CHECK: ret i32 3




More information about the cfe-commits mailing list