File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,9 @@ int main(int argc, char **argv) {
7171 testUtils::tryExecGetBuildCommands (testUtils::getRelativeTestSuitePath (" object-file" ), clang,
7272 testUtils::MAKE_BUILD_COMMANDS_TOOL);
7373
74+ testUtils::tryExecGetBuildCommands (testUtils::getRelativeTestSuitePath (" precompiled" ), clang,
75+ testUtils::MAKE_BUILD_COMMANDS_TOOL);
76+
7477 testUtils::tryExecGetBuildCommands (testUtils::getRelativeTestSuitePath (" linkage-ld" ), clang,
7578 testUtils::MAKE_BUILD_COMMANDS_TOOL);
7679
Original file line number Diff line number Diff line change 33all : exe
44
55clean :
6- rm exe lib.a lib1.o lib2.o
6+ rm exe lib.a lib1.o lib2.o source1.o
77
88lib1.o : lib1.c
99 clang -c -o lib1.o lib1.c
Original file line number Diff line number Diff line change 1+ #include <stdlib.h>
2+
3+ int g () {
4+ return 15 ;
5+ }
6+
7+ int main (int argc , char * argv []) {
8+ if (f (argc ) < 5 ) {
9+ return 0 ;
10+ } else {
11+ return atoi (argv [0 ]);
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments