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

Side by Side Diff: src/trusted/validator_mips/testdata/test_invalid_dest.S

Issue 9979025: [MIPS] Adding validator for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Rebased patch, conflict resolved. Created 8 years, 6 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 # Copyright 2012 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can
3 # be found in the LICENSE file.
4
5 # Test branch to addresses above 256 MB.
6 # We do this by linking _start at address 0xFFFA000 which is 255 MB+1000k,
7 # so that branch can reach address higher than 256 MB.
8
9 .globl _start
10 _start:
11 .align 4
12 .set noreorder
13
14 nop
15 b _start + 0x10000 # Error, invalid destination, above 256MB.
16 nop
17 nop
18
19 end_of_code:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698