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 | 6ad4c148cf073113d6048eb837eb222f2438af1d (patch) | |
tree | 114d34349ac461a61cc2409b5bec90c1da88bc87 /lib/Support/APInt.cpp | |
parent | fd43dcfc57076da0661cf94ea59f69aa22dd096c (diff) |
Disable this for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r-- | lib/Support/APInt.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 1b2edef5a2..d8441743b5 100644 --- a/lib/Support/APInt.cpp +++ b/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 + |