diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2018-03-07 05:02:27 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2018-03-07 05:02:27 +0000 |
commit | f11efc6daabe04d2757e2f4d84244fd6b9807e42 (patch) | |
tree | c69ff473af7d9937fdb3970ad08e3b46d72c2f1e /clang/test/CodeGenCXX/alloc-size.cpp | |
parent | 4763876f4b417b9effb7d4737dc22007e44a9c19 (diff) | |
download | bcm5719-llvm-f11efc6daabe04d2757e2f4d84244fd6b9807e42.tar.gz bcm5719-llvm-f11efc6daabe04d2757e2f4d84244fd6b9807e42.zip |
Remove a placeholder
...Running tests in the wrong directory will often make them seem to
pass. Oops. :)
llvm-svn: 326873
Diffstat (limited to 'clang/test/CodeGenCXX/alloc-size.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/alloc-size.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/alloc-size.cpp b/clang/test/CodeGenCXX/alloc-size.cpp index 34892b8abc2..b533c9969ac 100644 --- a/clang/test/CodeGenCXX/alloc-size.cpp +++ b/clang/test/CodeGenCXX/alloc-size.cpp @@ -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 |