diff options
author | Chris Lattner <sabre@nondot.org> | 2006-07-26 21:14:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-07-26 21:14:04 +0000 |
commit | 44b1e8e53fd96731f30f4abe3f4d4a2f6138a6ff (patch) | |
tree | a6f4d9fd4c67c66eaa3a78148698b7c26bb4ad92 | |
parent | Rename RelocModel::PIC to PIC_, to avoid conflicts with -DPIC. (diff) | |
download | llvm-project-44b1e8e53fd96731f30f4abe3f4d4a2f6138a6ff.tar.gz llvm-project-44b1e8e53fd96731f30f4abe3f4d4a2f6138a6ff.tar.bz2 llvm-project-44b1e8e53fd96731f30f4abe3f4d4a2f6138a6ff.zip |
Avoid a "scary" make warning for the 1.8 release. This should be reenabled
right after 1.8 "ships".
llvm-svn: 29308
-rwxr-xr-x | llvm/tools/llvm-config/find-cycles.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/tools/llvm-config/find-cycles.pl b/llvm/tools/llvm-config/find-cycles.pl index eec79c95c959..812eb96b7d8a 100755 --- a/llvm/tools/llvm-config/find-cycles.pl +++ b/llvm/tools/llvm-config/find-cycles.pl @@ -70,7 +70,10 @@ foreach my $cycle (@CYCLES) { join(' ', sort keys %dependencies) . "\n"); } print sort @output; -exit $cycles_found; + +### FIXME: reenable this after 1.8. +#exit $cycles_found; +exit 0; #========================================================================== # Depedency Cycle Support |