You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
374 B
21 lines
374 B
// RUN: %clang_cc1 -verify -ffixed-point %s
|
|
|
|
union a {
|
|
_Accum x;
|
|
int i;
|
|
};
|
|
|
|
int fn1() {
|
|
union a m;
|
|
m.x = 5.6k;
|
|
return m.i;
|
|
}
|
|
|
|
int fn2() {
|
|
union a m;
|
|
m.x = 7, 5.6k; // expected-warning {{expression result unused}}
|
|
return m.x, m.i; // expected-warning {{expression result unused}}
|
|
}
|
|
|
|
_Accum acc = (0.5r, 6.9k); // expected-warning {{expression result unused}}
|