aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-08-20 00:20:31 +0000
committerEric Christopher <echristo@apple.com>2010-08-20 00:20:31 +0000
commitcb59229a4a60abaee9ef060c515dbd3513865afd (patch)
tree9234dc3841c627639260cb4b7293f3fca5d69195
parent63241f79e667feafb10936b7c2cf03c33f55dd01 (diff)
Add a couple of random comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111592 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMFastISel.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index 6dbf0fc98b..a61fca1f25 100644
--- a/lib/Target/ARM/ARMFastISel.cpp
+++ b/lib/Target/ARM/ARMFastISel.cpp
@@ -67,6 +67,7 @@ class ARMFastISel : public FastISel {
Subtarget = &TM.getSubtarget<ARMSubtarget>();
}
+ // Code from FastISel.cpp.
virtual unsigned FastEmitInst_(unsigned MachineInstOpcode,
const TargetRegisterClass *RC);
virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode,
@@ -95,6 +96,8 @@ class ARMFastISel : public FastISel {
virtual unsigned FastEmitInst_extractsubreg(MVT RetVT,
unsigned Op0, bool Op0IsKill,
uint32_t Idx);
+
+ // Backend specific FastISel code.
virtual bool TargetSelectInstruction(const Instruction *I);
#include "ARMGenFastISel.inc"