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

Side by Side Diff: tests_lit/llvm2ice_tests/align-spill-locations.ll

Issue 659513005: Allow conditional lit tests in Subzero, based on build flags. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add -Wno-error=unused-parameter 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
OLDNEW
1 ; This checks to ensure that Subzero aligns spill slots. 1 ; This checks to ensure that Subzero aligns spill slots.
2 2
3 ; TODO(kschimpf) Find out why lc2i needed. 3 ; TODO(kschimpf) Find out why lc2i needed.
4 ; REQUIRES: allow_llvm_ir_as_input
4 ; RUN: %lc2i -i %s --args --verbose none \ 5 ; RUN: %lc2i -i %s --args --verbose none \
5 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 6 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \
6 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 7 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
7 ; RUN: %lc2i -i %s --args -O2 --verbose none \ 8 ; RUN: %lc2i -i %s --args -O2 --verbose none \
8 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 9 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \
9 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 10 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
10 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s 11 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
11 12
12 ; The location of the stack slot for a variable is inferred from the 13 ; The location of the stack slot for a variable is inferred from the
13 ; return sequence. 14 ; return sequence.
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 ; CHECK-NEXT: movss dword ptr [esp + {{12|28}}], xmm0 87 ; CHECK-NEXT: movss dword ptr [esp + {{12|28}}], xmm0
87 ; CHECK: movups xmm0, xmmword ptr [{{esp|esp \+ 16}}] 88 ; CHECK: movups xmm0, xmmword ptr [{{esp|esp \+ 16}}]
88 ; CHECK-NEXT: add esp, 44 89 ; CHECK-NEXT: add esp, 44
89 ; CHECK-NEXT: ret 90 ; CHECK-NEXT: ret
90 } 91 }
91 92
92 declare void @ForceXmmSpillsAndUseAlloca(i8*) 93 declare void @ForceXmmSpillsAndUseAlloca(i8*)
93 declare void @ForceXmmSpillsAndUseFloat(float) 94 declare void @ForceXmmSpillsAndUseFloat(float)
94 95
95 ; ERRORS-NOT: ICE translation error 96 ; ERRORS-NOT: ICE translation error
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/addr-opt-multi-def-var.ll ('k') | tests_lit/llvm2ice_tests/ebp_args.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698