diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-11-08 17:20:05 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-11-08 17:20:05 +0000 |
commit | e0cb36b9fb1e1b0de9b46eafd8dc3802122b2e73 (patch) | |
tree | 57ddcdf7f61cede65612cd6ff5013ad2c11a92b1 /include/llvm/IntrinsicsARM.td | |
parent | 4471194d69cc99ed53dc1638e06053b069dc6454 (diff) | |
download | external_llvm-e0cb36b9fb1e1b0de9b46eafd8dc3802122b2e73.zip external_llvm-e0cb36b9fb1e1b0de9b46eafd8dc3802122b2e73.tar.gz external_llvm-e0cb36b9fb1e1b0de9b46eafd8dc3802122b2e73.tar.bz2 |
[ARM] Implement __builtin_thread_pointer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43892 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IntrinsicsARM.td')
-rw-r--r-- | include/llvm/IntrinsicsARM.td | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/llvm/IntrinsicsARM.td b/include/llvm/IntrinsicsARM.td new file mode 100644 index 0000000..1830931 --- /dev/null +++ b/include/llvm/IntrinsicsARM.td @@ -0,0 +1,21 @@ +//===- IntrinsicsARM.td - Defines ARM intrinsics -----------*- tablegen -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by Lauro Ramos Venancio and is distributed under the +// University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines all of the ARM-specific intrinsics. +// +//===----------------------------------------------------------------------===// + + +//===----------------------------------------------------------------------===// +// TLS + +let TargetPrefix = "arm" in { // All intrinsics start with "llvm.arm.". + def int_arm_thread_pointer : GCCBuiltin<"__builtin_thread_pointer">, + Intrinsic<[llvm_ptr_ty],[IntrNoMem]>; +} |