1 //===- fpcmp.cpp - A fuzzy "cmp" that permits floating point noise --------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // fpcmp is a tool that basically works like the 'cmp' tool, except that it can
11 // tolerate errors due to floating point noise, with the -r and -a options.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Support/CommandLine.h"
16 #include "llvm/Support/FileUtilities.h"
22 File1(cl::Positional
, cl::desc("<input file #1>"), cl::Required
);
24 File2(cl::Positional
, cl::desc("<input file #2>"), cl::Required
);
27 RelTolerance("r", cl::desc("Relative error tolerated"), cl::init(0));
29 AbsTolerance("a", cl::desc("Absolute error tolerated"), cl::init(0));
32 int main(int argc
, char **argv
) {
33 cl::ParseCommandLineOptions(argc
, argv
);
36 int DF
= DiffFilesWithTolerance(sys::PathWithStatus(File1
),
37 sys::PathWithStatus(File2
),
38 AbsTolerance
, RelTolerance
, &ErrorMsg
);
39 if (!ErrorMsg
.empty())
40 std::cerr
<< argv
[0] << ": " << ErrorMsg
<< "\n";