r274050 - Fix unreasonably-precise CHECK.

Richard Smith via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 28 12:09:30 PDT 2016


Author: rsmith
Date: Tue Jun 28 14:09:30 2016
New Revision: 274050

URL: http://llvm.org/viewvc/llvm-project?rev=274050&view=rev
Log:
Fix unreasonably-precise CHECK.

Modified:
    cfe/trunk/test/CodeGenCXX/inheriting-constructor.cpp

Modified: cfe/trunk/test/CodeGenCXX/inheriting-constructor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/inheriting-constructor.cpp?rev=274050&r1=274049&r2=274050&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/inheriting-constructor.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/inheriting-constructor.cpp Tue Jun 28 14:09:30 2016
@@ -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: }
 }




More information about the cfe-commits mailing list