blob: 02b176bc5389c9cc9a345feeb9714c6f80de7814 [file] [log] [blame]
buzbee54330722011-08-23 16:46:55 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#ifndef ART_SRC_RUNTIME_SUPPORT_H_
4#define ART_SRC_RUNTIME_SUPPORT_H_
5
6#if defined(__arm__)
7 extern "C" uint64_t art_shl_long(uint64_t, uint32_t);
8 extern "C" uint64_t art_shr_long(uint64_t, uint32_t);
9 extern "C" uint64_t art_ushr_long(uint64_t, uint32_t);
10#endif
11
12#endif // ART_SRC_RUNTIME_SUPPORT_H_