diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-04 15:29:20 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-04 15:29:20 +0000 |
commit | 3c7511a44d20d0fd9e287747eb58a00215c57533 (patch) | |
tree | f6ed244b7f06f1f755cb5b387fb7d5f7fbc9b825 | |
parent | d1ac8a54fa4f0866b5b30304455dfdb093a287e5 (diff) | |
download | clang-3c7511a44d20d0fd9e287747eb58a00215c57533.tar.gz |
Looks like {{.*}} doesn't match the empty string. Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185650 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/2004-11-27-StaticFunctionRedeclare.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c b/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c index 05f82be87c..da811c4a65 100644 --- a/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c +++ b/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c @@ -8,7 +8,7 @@ // CHECK: define void @bar( // CHECK: call {{.*}} @func -// CHECK: define internal {{.*}} i32 @func( +// CHECK: define internal {{.*}}i32 @func( static int func(); void bar() { int func(); |