diff options
author | Justin Holewinski <justin.holewinski@gmail.com> | 2011-04-20 15:37:17 +0000 |
---|---|---|
committer | Justin Holewinski <justin.holewinski@gmail.com> | 2011-04-20 15:37:17 +0000 |
commit | 7d8895e7675b659c6c08a58bdf0dbea8cda17a3e (patch) | |
tree | 22464f0510d6c3ba5b4f10a4ac246ca2e9f8c43c /llvm/test/CodeGen/PTX/shr.ll | |
parent | ed16477cb9f907bd3525ae99d787c5d448f8dc0b (diff) | |
download | bcm5719-llvm-7d8895e7675b659c6c08a58bdf0dbea8cda17a3e.tar.gz bcm5719-llvm-7d8895e7675b659c6c08a58bdf0dbea8cda17a3e.zip |
PTX: Add intrinsics to list of built-in intrinsics, which allows them to be
used by Clang. To help Clang integration, the PTX target has been split
into two targets: ptx32 and ptx64, depending on the desired pointer size.
- Add GCCBuiltin class to all intrinsics
- Split PTX target into ptx32 and ptx64
llvm-svn: 129851
Diffstat (limited to 'llvm/test/CodeGen/PTX/shr.ll')
-rw-r--r-- | llvm/test/CodeGen/PTX/shr.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PTX/shr.ll b/llvm/test/CodeGen/PTX/shr.ll index 3f8ade862b7..8693e0ecf49 100644 --- a/llvm/test/CodeGen/PTX/shr.ll +++ b/llvm/test/CodeGen/PTX/shr.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=ptx | FileCheck %s +; RUN: llc < %s -march=ptx32 | FileCheck %s define ptx_device i32 @t1(i32 %x, i32 %y) { ; CHECK: shr.u32 r0, r1, r2 |