diff options
author | Andreas Gampe <agampe@google.com> | 2015-04-07 19:58:03 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-04-07 19:58:03 -0700 |
commit | c7399c82c27f85a2df2653e1eb8c0b60f2cfd934 (patch) | |
tree | 77c7df80503c8737931102a94350c1bb7d2d0a9e /compiler/dex | |
parent | 40f65560b5ecd79aeaadc16b03834d11aea1e0a5 (diff) | |
download | art-c7399c82c27f85a2df2653e1eb8c0b60f2cfd934.tar.gz art-c7399c82c27f85a2df2653e1eb8c0b60f2cfd934.tar.bz2 art-c7399c82c27f85a2df2653e1eb8c0b60f2cfd934.zip |
ART: Remove LLVM cruft
Change-Id: I133ebed6101bf12a0642ed71e13f332c0c4f14e7
Diffstat (limited to 'compiler/dex')
-rw-r--r-- | compiler/dex/mir_graph.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/mir_graph.cc b/compiler/dex/mir_graph.cc index 58f12c94e4..4d340387f2 100644 --- a/compiler/dex/mir_graph.cc +++ b/compiler/dex/mir_graph.cc @@ -1609,8 +1609,8 @@ void MIRGraph::ReplaceSpecialChars(std::string& str) { } std::string MIRGraph::GetSSAName(int ssa_reg) { - // TODO: This value is needed for LLVM and debugging. Currently, we compute this and then copy to - // the arena. We should be smarter and just place straight into the arena, or compute the + // TODO: This value is needed for debugging. Currently, we compute this and then copy to the + // arena. We should be smarter and just place straight into the arena, or compute the // value more lazily. int vreg = SRegToVReg(ssa_reg); if (vreg >= static_cast<int>(GetFirstTempVR())) { |