annotate clang/test/Sema/conversion-64-32.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wshorten-64-to-32 -triple x86_64-apple-darwin %s
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 int test0(long v) {
anatofuz
parents:
diff changeset
4 return v; // expected-warning {{implicit conversion loses integer precision}}
anatofuz
parents:
diff changeset
5 }
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 // rdar://9546171
anatofuz
parents:
diff changeset
9 typedef int int4 __attribute__ ((vector_size(16)));
anatofuz
parents:
diff changeset
10 typedef long long long2 __attribute__((__vector_size__(16)));
anatofuz
parents:
diff changeset
11
anatofuz
parents:
diff changeset
12 int4 test1(long2 a) {
anatofuz
parents:
diff changeset
13 int4 v127 = a; // no warning.
anatofuz
parents:
diff changeset
14 return v127;
anatofuz
parents:
diff changeset
15 }
anatofuz
parents:
diff changeset
16
anatofuz
parents:
diff changeset
17 int test2(long v) {
anatofuz
parents:
diff changeset
18 return v / 2; // expected-warning {{implicit conversion loses integer precision: 'long' to 'int'}}
anatofuz
parents:
diff changeset
19 }