diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-06 05:38:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-06 05:38:37 +0000 |
commit | 28cbd1d624be5531b7b46cd19e33acc9209e9a6f (patch) | |
tree | ffb1ab44a51ad602660c1cece9579ba037c379f1 /llvm/lib/Support/APInt.cpp | |
parent | dac63788abca093148c4dd5169cdf930385a8b38 (diff) | |
download | bcm5719-llvm-28cbd1d624be5531b7b46cd19e33acc9209e9a6f.tar.gz bcm5719-llvm-28cbd1d624be5531b7b46cd19e33acc9209e9a6f.zip |
Disable this for now.
llvm-svn: 33953
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index 1b2edef5a27..d8441743b5e 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -13,6 +13,8 @@ //===----------------------------------------------------------------------===// #include "llvm/ADT/APInt.h" + +#if 0 #include "llvm/DerivedTypes.h" #include "llvm/Support/MathExtras.h" #include <strings.h> @@ -1111,3 +1113,6 @@ APInt llvm::GreatestCommonDivisor(const APInt& API1, const APInt& API2) { } return A; } + +#endif + |