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

Side by Side Diff: test/Transforms/NaCl/simplify-struct-reg-vararg-crash.ll

Issue 992493002: Lower signatures exposing struct registers to byval struct pointers (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Varargs take 2 Created 5 years, 9 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: not opt < %s -simplify-struct-reg-signatures -S
2
3 %struct = type { i32, i32 }
4
5 declare void @vararg_fct(...)
6
7 define void @vararg_caller_with_agg(%struct %str) {
8 call void(...)* @vararg_fct(%struct %str)
9 ret void
10 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698