summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorarphaman <arphaman@gmail.com>2013-08-24 16:36:25 +0100
committerarphaman <arphaman@gmail.com>2013-08-24 16:36:25 +0100
commitc3f0235696b59d22cf4c90ed18406d7b636af2f0 (patch)
treeb7fa6e0d32f7df1c98f7ae79715730ca686cdbc1 /include
parentbd373b2b818e69f877c8eb5b39c126ce063b5abb (diff)
downloadlibflangrt-c3f0235696b59d22cf4c90ed18406d7b636af2f0.tar.gz
added support for ETIME intrinsic
Diffstat (limited to 'include')
-rw-r--r--include/System/System.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/System/System.h b/include/System/System.h
new file mode 100644
index 0000000..aa3da84
--- /dev/null
+++ b/include/System/System.h
@@ -0,0 +1,18 @@
+//===--- System.h - The system library -------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBFLANG_CORE_H
+#define LLVM_LIBFLANG_CORE_H
+
+#include "Libflang.h"
+
+LIBFLANG_ABI void libflang_sys_init();
+LIBFLANG_ABI float libflang_etime(float *time0, float *time1);
+
+#endif