mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
85e5156598
most of them to FileCheck. llvm-svn: 136159
27 lines
314 B
C
27 lines
314 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
|
|
struct DWstruct {
|
|
char high, low;
|
|
};
|
|
|
|
typedef union {
|
|
struct DWstruct s;
|
|
short ll;
|
|
} DWunion;
|
|
|
|
short __udivmodhi4 (char n1, char bm) {
|
|
DWunion rr;
|
|
|
|
if (bm == 0)
|
|
{
|
|
rr.s.high = n1;
|
|
}
|
|
else
|
|
{
|
|
rr.s.high = bm;
|
|
}
|
|
|
|
return rr.ll;
|
|
}
|