diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2013-09-11 03:49:30 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2013-09-11 03:49:30 +0000 |
commit | de432143bddd63bea0424853886b427dce7aff44 (patch) | |
tree | fee8bec074555cc0b19046f9886169efcfd1b22b /clang/test/CodeGenCXX/attr-cleanup.cpp | |
parent | 9ea1e167479a9ab6f5435a41cc0d9741ecc6fb5b (diff) | |
download | bcm5719-llvm-de432143bddd63bea0424853886b427dce7aff44.tar.gz bcm5719-llvm-de432143bddd63bea0424853886b427dce7aff44.zip |
Fix test.
llvm-svn: 190483
Diffstat (limited to 'clang/test/CodeGenCXX/attr-cleanup.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/attr-cleanup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/attr-cleanup.cpp b/clang/test/CodeGenCXX/attr-cleanup.cpp index 03f9481470e..1829df8fced 100644 --- a/clang/test/CodeGenCXX/attr-cleanup.cpp +++ b/clang/test/CodeGenCXX/attr-cleanup.cpp @@ -5,7 +5,7 @@ namespace N { }
int main(void) {
- // CHECK: call void @_ZN1N4freeEPv(i8* %0)
+ // CHECK: call void @_ZN1N4freeEPv
void *fp __attribute__((cleanup(N::free)));
return 0;
}
|