Implement the clock() function
authorChris Lattner <sabre@nondot.org>
Wed, 23 Jan 2002 21:38:07 +0000 (21:38 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 23 Jan 2002 21:38:07 +0000 (21:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1573 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp

index bcff5e579541ac8654ea1b04bc99a9947c6dea16..5bad84ca8966df003790f2f37b8b33a901a61f20 100644 (file)
@@ -363,6 +363,12 @@ GenericValue lle_X_printf(MethodType *M, const vector<GenericValue> &Args) {
   return GV;
 }
 
+// int clock(void) - Profiling implementation
+GenericValue lle_i_clock(MethodType *M, const vector<GenericValue> &Args) {
+  extern int clock(void);
+  GenericValue GV; GV.IntVal = clock();
+  return GV;
+}
 
 } // End extern "C"
 
@@ -401,4 +407,5 @@ void Interpreter::initializeExternalMethods() {
   FuncNames["lle_X_sqrt"]         = lle_X_sqrt;
   FuncNames["lle_X_printf"]       = lle_X_printf;
   FuncNames["lle_X_sprintf"]      = lle_X_sprintf;
+  FuncNames["lle_i_clock"]        = lle_i_clock;
 }