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

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: Update per initial code review. Nexes removed. Created 8 years, 8 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 # Copyright 2012 MIPS Technologies / RT-RK.
5
6 # With this test we are tryig to branch on address above 256 MB
Brad Chen 2012/04/13 00:50:52 ...trying to branch to an address...
7 # We do this by linking _start on address 0xFFFA000 which is
8 # 255 MB+1000k, so that branch can reach address higher than 256 MB
9
10 .globl _start
11 _start:
12 .align 4
13 .set noreorder
14
15 nop
16 b 0x10000+_start #error, invalid destination, over 256MB
17 nop
18 nop
19
20 end_of_code:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698