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

Side by Side Diff: test/NaCl/X86/stack-adjust.ll

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: Created 5 years, 10 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 ; RUN: llc -mtriple=x86_64-pc-nacl -force-align-stack %s -o - | FileCheck %s
2
3 ; Check that stack alignment (ANDri32 with the stack pointer) expands to
4 ; the bundle-locked adjustment for asm output, instead of a naclandsp pseudo
5 define void @stackalign () {
6 ; CHECK-LABEL: stackalign
7 ret void
8 ; CHECK: .bundle_lock
9 ; CHECK-NEXT: andl $-8, %esp
10 ; CHECK-NEXT: leaq (%rsp,%r15), %rsp
11 ; CHECK-NEXT: .bundle_unlock
12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698