Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: test/NaCl/ARM/nacl-read-tp-intrinsic.ll

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/NaCl/ARM/lit.local.cfg ('k') | test/NaCl/ARM/nacl-setlongjmp-intrinsics.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 ; RUN: pnacl-llc -mtriple=armv7-unknown-nacl -filetype=asm %s -o - \
3 ; RUN: | FileCheck -check-prefix=ARM %s
4
5 ; RUN: pnacl-llc -mtriple=armv7-unknown-nacl -filetype=asm -mtls-use-call %s -o - \
6 ; RUN: | FileCheck -check-prefix=ARM_IRT %s
7
8
9 declare i8* @llvm.nacl.read.tp()
10
11 define i8* @get_thread_pointer() {
12 %tp = call i8* @llvm.nacl.read.tp()
13 ret i8* %tp
14 }
15
16 ; ARM: get_thread_pointer:
17 ; ARM: ldr r0, [r9]
18
19 ; ARM_IRT: get_thread_pointer:
20 ; ARM_IRT: bl __aeabi_read_tp
OLDNEW
« no previous file with comments | « test/NaCl/ARM/lit.local.cfg ('k') | test/NaCl/ARM/nacl-setlongjmp-intrinsics.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698