diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-08-04 15:32:36 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-08-04 15:32:36 +0000 |
commit | 3f55a4fcab5fddb12cb4d59325adf45d20748b13 (patch) | |
tree | 7aefffe790d4cc451e593ddec6479b945dae2838 /lib/Target/Alpha/AlphaJITInfo.cpp | |
parent | cd33eef1b2dc1e81ab57b4857cb63c47bb62a496 (diff) |
No, IDEFs shouldn't be JITed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaJITInfo.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaJITInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaJITInfo.cpp b/lib/Target/Alpha/AlphaJITInfo.cpp index c8b7a6752a..e0e7a07289 100644 --- a/lib/Target/Alpha/AlphaJITInfo.cpp +++ b/lib/Target/Alpha/AlphaJITInfo.cpp @@ -64,7 +64,7 @@ static void EmitBranchToAt(void *At, void *To) { for (int x = 1; x <= 8; ++x) { AtI[2*x - 1] = BUILD_SLLi(27,27,8); unsigned d = (Fn >> (64 - 8 * x)) & 0x00FF; - DEBUG(std::cerr << "outputing " << hex << d << dec << "\n"); + // DEBUG(std::cerr << "outputing " << hex << d << dec << "\n"); AtI[2*x] = BUILD_ORi(27, 27, d); } AtI[17] = BUILD_JMP(31,27,0); //jump, preserving ra, and setting pv |