diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-06-28 19:09:30 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-06-28 19:09:30 +0000 |
commit | 183b3014a406746afc2a7e9df78d510aa60b6e6d (patch) | |
tree | d6e9821d131ca406a87a8f04b7f121ad0f5b533a | |
parent | 5179eb78210a2ad01a18c37b75048ccfe78414ac (diff) | |
download | bcm5719-llvm-183b3014a406746afc2a7e9df78d510aa60b6e6d.tar.gz bcm5719-llvm-183b3014a406746afc2a7e9df78d510aa60b6e6d.zip |
Fix unreasonably-precise CHECK.
llvm-svn: 274050
-rw-r--r-- | clang/test/CodeGenCXX/inheriting-constructor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/inheriting-constructor.cpp b/clang/test/CodeGenCXX/inheriting-constructor.cpp index 4ba59fdad85..a3adf70ebb1 100644 --- a/clang/test/CodeGenCXX/inheriting-constructor.cpp +++ b/clang/test/CodeGenCXX/inheriting-constructor.cpp @@ -386,12 +386,12 @@ namespace inline_virt { // B base object inheriting constructor does not get passed arguments. // ITANIUM-LABEL: define linkonce_odr void @_ZN11inline_virt1BCI2NS_1AEE1QiS1_OS1_z( // ITANIUM-NOT: call - // ITANIUM: call void @_ZN1ZC2Ev(%struct.Z* %2) + // ITANIUM: call void @_ZN1ZC2Ev( // ITANIUM-NOT: call // VTT -> vtable // ITANIUM: store // ITANIUM-NOT: call - // ITANIUM: call void @_ZN1ZC1Ev(%struct.Z* %z) + // ITANIUM: call void @_ZN1ZC1Ev( // ITANIUM-NOT: call // ITANIUM: } } |