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

Side by Side Diff: tests_lit/llvm2ice_tests/unknown-arm-reg.ll

Issue 1571433004: Implements include/exclude register lists for translation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add CL tests. Created 4 years, 11 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 ; Show that we complain if an unknown register is specified on the command line.
2
3 ; Compile using standalone assembler.
4 ; RUN: %p2i --expect-fail --filetype=asm -i %s --target=arm32 --args -Om1 \
5 ; RUN: -reg-use r2,xx9x,r5 2>&1 \
6 ; RUN: | FileCheck %s --check-prefix=USE
7
8 ; Compile using standalone assembler.
9 ; RUN: %p2i --expect-fail --filetype=asm -i %s --target=arm32 --args -Om1 \
10 ; RUN: -reg-exclude r2,xx9x,r5 2>&1 \
11 ; RUN: | FileCheck %s --check-prefix=EXC
12
13 define void @foo() {
14 ret void
15 }
16
17 ; USE: LLVM ERROR: Can't find register use: xx9x
Jim Stichnoth 2016/01/15 00:50:56 If you take my suggestion about reporting *all* bo
Karl 2016/01/15 16:54:25 Done.
18 ; EXC: LLVM ERROR: Can't find register exclude: xx9x
19
Jim Stichnoth 2016/01/15 00:50:56 Delete trailing whitespace (blank line).
Karl 2016/01/15 16:54:25 Done.
OLDNEW
« src/IceTargetLoweringARM32.cpp ('K') | « tests_lit/assembler/arm32/vadd.ll ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698