[llvm-commits] CVS: llvm/lib/Target/Skeleton/SkeletonJITInfo.cpp SkeletonJITInfo.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Nov 19 20:15:50 PST 2004
Changes in directory llvm/lib/Target/Skeleton:
SkeletonJITInfo.cpp updated: 1.1 -> 1.2
SkeletonJITInfo.h updated: 1.1 -> 1.2
---
Log message:
getJITStubForFunction is optional and unimplemented, just remove it for now.
---
Diffs of the changes: (+0 -12)
Index: llvm/lib/Target/Skeleton/SkeletonJITInfo.cpp
diff -u llvm/lib/Target/Skeleton/SkeletonJITInfo.cpp:1.1 llvm/lib/Target/Skeleton/SkeletonJITInfo.cpp:1.2
--- llvm/lib/Target/Skeleton/SkeletonJITInfo.cpp:1.1 Fri Jul 16 02:11:11 2004
+++ llvm/lib/Target/Skeleton/SkeletonJITInfo.cpp Fri Nov 19 22:15:38 2004
@@ -25,12 +25,6 @@
return true; // Not implemented yet!
}
-void *SkeletonJITInfo::getJITStubForFunction(Function *F,
- MachineCodeEmitter &MCE) {
- assert (0 && "getJITStubForFunction not implemented");
- return 0;
-}
-
void SkeletonJITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
assert (0 && "replaceMachineCodeForFunction not implemented");
}
Index: llvm/lib/Target/Skeleton/SkeletonJITInfo.h
diff -u llvm/lib/Target/Skeleton/SkeletonJITInfo.h:1.1 llvm/lib/Target/Skeleton/SkeletonJITInfo.h:1.2
--- llvm/lib/Target/Skeleton/SkeletonJITInfo.h:1.1 Fri Jul 16 02:11:11 2004
+++ llvm/lib/Target/Skeleton/SkeletonJITInfo.h Fri Nov 19 22:15:38 2004
@@ -37,12 +37,6 @@
/// code.
///
virtual void replaceMachineCodeForFunction(void *Old, void *New);
-
- /// getJITStubForFunction - Create or return a stub for the specified
- /// function. This stub acts just like the specified function, except that
- /// it allows the "address" of the function to be taken without having to
- /// generate code for it.
- virtual void *getJITStubForFunction(Function *F, MachineCodeEmitter &MCE);
};
}
More information about the llvm-commits
mailing list