This test is odd. It is running the driver and checking IL. Driver tests normally check the commands that the driver is executing (like clang -cc1) by passing -### to the driver.
If the objective is to check IL, it should not be a driver test and use %clang_cc1 instead. On 15 August 2013 06:51, Robert Lytton <[email protected]> wrote: > Hi, > > Small patch to make a couple of tests more concise. > (highlights echoed below) > > Robert > > > -// CHECK: @g1 = global i32 0, align 4 > +// CHECK: @g1 = global > int g1; > > > -// CHECK-LABEL: define zeroext i8 @testchar() > +// CHECK: define zeroext i8 @testchar() > char testchar (void) { > > > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits > _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
