diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-11 08:35:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-11 08:35:52 +0000 |
commit | 832d3c2fac83ef5e0c23d8463f36a23f19e4394f (patch) | |
tree | f922d6e85f8caa27beede96fdaecf6b66bbc30d4 /clang/test | |
parent | 84ba97698e588624fb11ad820882ff0c998178a2 (diff) | |
download | bcm5719-llvm-832d3c2fac83ef5e0c23d8463f36a23f19e4394f.tar.gz bcm5719-llvm-832d3c2fac83ef5e0c23d8463f36a23f19e4394f.zip |
Update test to not fail with attribute groups.
llvm-svn: 174866
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/attr-minsize.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/attr-minsize.cpp b/clang/test/CodeGen/attr-minsize.cpp index a422a62f253..1b63dd472e2 100644 --- a/clang/test/CodeGen/attr-minsize.cpp +++ b/clang/test/CodeGen/attr-minsize.cpp @@ -65,11 +65,11 @@ void test5<int>(int arg); // Oz: define{{.*}}void @{{.*}}test5 // Oz: minsize // OTHER: define{{.*}}void @{{.*}}test5 -// OTHER-NOT: minsize +// OTHER-NOT: define{{.*}}void @{{.*}}test5{{.*}}minsize template void test5<float>(float arg); // Oz: define{{.*}}void @{{.*}}test5 // Oz: minsize // OTHER: define{{.*}}void @{{.*}}test5 -// OTHER-NOT: minsize +// OTHER-NOT: define{{.*}}void @{{.*}}test5{{.*}}minsize |