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

Side by Side Diff: test/MC/ARM/nacl-autosandbox/branch.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: rebased onto plumbing CL and added comment 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
« no previous file with comments | « lib/Target/ARM/MCTargetDesc/ARMMCNaClExpander.cpp ('k') | test/MC/ARM/nacl-autosandbox/call.s » ('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 // RUN: llvm-mc -filetype asm -triple armv7-unknown-nacl %s | FileCheck %s
2
3 foo:
4
5 b foo
6 //CHECK: b foo
7
8 bx r0
9 //CHECK: .bundle_lock
10 //CHECK-NEXT: bic r0, r0, #-1073741809
11 //CHECK-NEXT: bx r0
12 //CHECK-NEXT: .bundle_unlock
13
14 bx sp
15 //CHECK: bx sp
16
17 bx pc
18 //CHECK: bx pc
19
20
21 bne foo
22 //CHECK: bne foo
23
24 bxne r0
25 //CHECK: .bundle_lock
26 //CHECK-NEXT: bicne r0, r0, #-1073741809
27 //CHECK-NEXT: bxne r0
28 //CHECK-NEXT: .bundle_unlock
29
30 bxne sp
31 //CHECK: bxne sp
32
33 bxne pc
34 //CHECK: bxne pc
OLDNEW
« no previous file with comments | « lib/Target/ARM/MCTargetDesc/ARMMCNaClExpander.cpp ('k') | test/MC/ARM/nacl-autosandbox/call.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698