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

Side by Side Diff: tests_lit/reader_tests/nacl-fake-intrinsic.ll

Issue 732583002: Subzero: Auto-set -build-on-read=0 for .ll input files. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 1 month 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 | « tests_lit/reader_tests/insertextract-err.ll ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; Tests that we don't get fooled by a fake NaCl intrinsic. 1 ; Tests that we don't get fooled by a fake NaCl intrinsic.
2 2
3 ; TODO(kschimpf) Find way to run this through p2i. Note: Can't do this 3 ; TODO(kschimpf) Find way to run this through p2i. Note: Can't do this
4 ; currently because run-llvm2ice.py raises exception on error, 4 ; currently because run-llvm2ice.py raises exception on error,
5 ; and output is lost. 5 ; and output is lost.
6 ; RUN: llvm-as < %s | pnacl-freeze -allow-local-symbol-tables \ 6 ; RUN: llvm-as < %s | pnacl-freeze -allow-local-symbol-tables \
7 ; RUN: | not %llvm2ice -notranslate -verbose=inst -build-on-read \ 7 ; RUN: | not %llvm2ice -notranslate -verbose=inst \
8 ; RUN: -allow-pnacl-reader-error-recovery \ 8 ; RUN: -allow-pnacl-reader-error-recovery \
9 ; RUN: -allow-local-symbol-tables \ 9 ; RUN: -allow-local-symbol-tables \
10 ; RUN: | FileCheck %s 10 ; RUN: | FileCheck %s
11 11
12 declare i32 @llvm.fake.i32(i32) 12 declare i32 @llvm.fake.i32(i32)
13 13
14 define i32 @testFake(i32 %v) { 14 define i32 @testFake(i32 %v) {
15 %r = call i32 @llvm.fake.i32(i32 %v) 15 %r = call i32 @llvm.fake.i32(i32 %v)
16 ret i32 %r 16 ret i32 %r
17 } 17 }
18 18
19 ; CHECK: Error: (218:6) Invalid PNaCl intrinsic call to llvm.fake.i32 19 ; CHECK: Error: (218:6) Invalid PNaCl intrinsic call to llvm.fake.i32
20 20
OLDNEW
« no previous file with comments | « tests_lit/reader_tests/insertextract-err.ll ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698