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

Side by Side Diff: test/MC/ARM/nacl-autosandbox/call.s

Issue 1269273002: Auto sandboxing: control flow expansions for ARM (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: fixed branch through sp Created 5 years, 4 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
OLDNEW
(Empty)
1 // RUN: llvm-mc -filetype asm -triple armv7-unknown-nacl %s | FileCheck %s
2
3 foo:
4
5 bl foo
6 //CHECK: bl foo
7
8 blx r0
9 //CHECK: .bundle_lock align_to_end
10 //CHECK-NEXT: bic r0, r0, #-1073741809
11 //CHECK-NEXT: blx r0
12 //CHECK-NEXT: .bundle_unlock
13
14 blx sp
15 //CHECK: blx sp
16
17 blx pc
18 //CHECK: blx pc
19
20
21 blne foo
22 //CHECK: blne foo
23
24 blxne f0
25 //CHECK: blx f0
26
27 blxne sp
28 //CHECK: blxne sp
29
30 blxne pc
31 //CHECK: blxne pc
OLDNEW
« lib/Target/ARM/MCTargetDesc/ARMMCNaClExpander.cpp ('K') | « test/MC/ARM/nacl-autosandbox/branch.s ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698