mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00

PNaCl and Emscripten can both handle va_arg IR instructions with struct type. Also add a test to cover generating a va_arg IR instruction from va_arg in C on le32 (as already handled by VisitVAArgExpr() in CGExprScalar.cpp), which was not covered by a test before. (This fixes https://code.google.com/p/nativeclient/issues/detail?id=2381) Differential Revision: http://llvm-reviews.chandlerc.com/D2539 llvm-svn: 199830
29 lines
697 B
C
29 lines
697 B
C
// RUN: %clang_cc1 -triple le32-unknown-nacl -emit-llvm -o - %s | FileCheck %s
|
|
#include <stdarg.h>
|
|
|
|
int get_int(va_list *args) {
|
|
return va_arg(*args, int);
|
|
}
|
|
// CHECK: define i32 @get_int
|
|
// CHECK: [[RESULT:%[a-z_0-9]+]] = va_arg {{.*}}, i32{{$}}
|
|
// CHECK: ret i32 [[RESULT]]
|
|
|
|
struct Foo {
|
|
int x;
|
|
};
|
|
|
|
struct Foo dest;
|
|
|
|
void get_struct(va_list *args) {
|
|
dest = va_arg(*args, struct Foo);
|
|
}
|
|
// CHECK: define void @get_struct
|
|
// CHECK: [[RESULT:%[a-z_0-9]+]] = va_arg {{.*}}, %struct.Foo{{$}}
|
|
// CHECK: store %struct.Foo [[RESULT]], %struct.Foo* @dest
|
|
|
|
void skip_struct(va_list *args) {
|
|
va_arg(*args, struct Foo);
|
|
}
|
|
// CHECK: define void @skip_struct
|
|
// CHECK: va_arg {{.*}}, %struct.Foo{{$}}
|