The meat of this utility has been moved to FileUtilities, where it can be
[oota-llvm.git] / utils / fpcmp / fpcmp.cpp
1 //===- fpcmp.cpp - A fuzzy "cmp" that permits floating point noise --------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
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.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Support/CommandLine.h"
16 #include "llvm/Support/FileUtilities.h"
17 #include <iostream>
18 #include <cmath>
19
20 using namespace llvm;
21
22 namespace {
23   cl::opt<std::string>
24   File1(cl::Positional, cl::desc("<input file #1>"), cl::Required);
25   cl::opt<std::string>
26   File2(cl::Positional, cl::desc("<input file #2>"), cl::Required);
27
28   cl::opt<double>
29   RelTolerance("r", cl::desc("Relative error tolerated"), cl::init(0));
30   cl::opt<double>
31   AbsTolerance("a", cl::desc("Absolute error tolerated"), cl::init(0));
32 }
33
34 int main(int argc, char **argv) {
35   cl::ParseCommandLineOptions(argc, argv);
36
37   std::string ErrorMsg;
38   int DF = DiffFilesWithTolerance(File1, File2, AbsTolerance, RelTolerance,
39                                   &ErrorMsg);
40   if (!ErrorMsg.empty())
41     std::cerr << argv[0] << ": " << ErrorMsg << "\n";
42   return DF;
43 }
44