diff options
| author | Tim Northover <tnorthover@apple.com> | 2013-07-16 09:46:55 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2013-07-16 09:46:55 +0000 |
| commit | a7ecd241d2faf41ff00e7f1659b5a5e944f2826c (patch) | |
| tree | ee6ede98fae7cd6be0160cef903f156484cfaedc /llvm/lib/Target/NVPTX | |
| parent | 8761069e2204d786c62d706883df6299b4399bd5 (diff) | |
| download | bcm5719-llvm-a7ecd241d2faf41ff00e7f1659b5a5e944f2826c.tar.gz bcm5719-llvm-a7ecd241d2faf41ff00e7f1659b5a5e944f2826c.zip | |
ARM: implement ldrex, strex and clrex intrinsics
Intrinsics already existed for the 64-bit variants, so these support operations
of size at most 32-bits.
llvm-svn: 186392
Diffstat (limited to 'llvm/lib/Target/NVPTX')
| -rw-r--r-- | llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp b/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp index 0f792ec6826..1f376960178 100644 --- a/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp +++ b/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp @@ -37,7 +37,7 @@ bool NVPTXAllocaHoisting::runOnFunction(Function &function) { } char NVPTXAllocaHoisting::ID = 1; -RegisterPass<NVPTXAllocaHoisting> +static RegisterPass<NVPTXAllocaHoisting> X("alloca-hoisting", "Hoisting alloca instructions in non-entry " "blocks to the entry block"); |

