diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2017-02-23 22:14:55 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2017-02-23 22:14:55 +0000 |
commit | 635a7369b75d703798d8d8c02b1889ebb79dc67f (patch) | |
tree | 249bce049deed47c96399031580f9804523dcef9 /clang/test | |
parent | 128e191eacc0b56da814779e058ee31ad2117cfe (diff) | |
download | bcm5719-llvm-635a7369b75d703798d8d8c02b1889ebb79dc67f.tar.gz bcm5719-llvm-635a7369b75d703798d8d8c02b1889ebb79dc67f.zip |
Tighten up a regex in a test
...If we're trying to match "this function has only two arguments", `.*`
probably isn't the best thing to use. :)
llvm-svn: 296027
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGenObjCXX/arc-attrs-abi.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenObjCXX/arc-attrs-abi.mm b/clang/test/CodeGenObjCXX/arc-attrs-abi.mm index 1fb32f8c006..22ef7a55d33 100644 --- a/clang/test/CodeGenObjCXX/arc-attrs-abi.mm +++ b/clang/test/CodeGenObjCXX/arc-attrs-abi.mm @@ -25,7 +25,7 @@ struct VirtualBase2 { // emit the construction code inline. struct WithVirtualBaseMid : virtual VirtualBase2 { // Ensure we only pass in `this` and a vtable. Otherwise this test is useless. - // ITANIUM: define {{.*}} void @_ZN18WithVirtualBaseMidCI212VirtualBase2EP11objc_objectPv({{.*}}, {{.*}}) + // ITANIUM: define {{.*}} void @_ZN18WithVirtualBaseMidCI212VirtualBase2EP11objc_objectPv({{[^,]*}}, {{[^,]*}}) using VirtualBase2::VirtualBase2; }; struct WithVirtualBaseLast : WithVirtualBaseMid { |