File: uppercase-literal-suffix-integer-ms.cpp

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (77 lines) | stat: -rw-r--r-- 3,136 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// RUN: %check_clang_tidy %s readability-uppercase-literal-suffix %t -- -- -target x86_64-pc-linux-gnu -I %clang_tidy_headers -fms-extensions
// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
// RUN: clang-tidy %t.cpp -checks='-*,readability-uppercase-literal-suffix' -fix -- -target x86_64-pc-linux-gnu -I %clang_tidy_headers -fms-extensions
// RUN: clang-tidy %t.cpp -checks='-*,readability-uppercase-literal-suffix' -warnings-as-errors='-*,readability-uppercase-literal-suffix' -- -target x86_64-pc-linux-gnu -I %clang_tidy_headers -fms-extensions

#include "integral_constant.h"

void integer_suffix() {
  static constexpr auto v0 = __LINE__; // synthetic
  static_assert(v0 == 9 || v0 == 5, "");

  static constexpr auto v1 = __cplusplus; // synthetic, long

  static constexpr auto v2 = 1; // no literal
  static_assert(is_same<decltype(v2), const int>::value, "");
  static_assert(v2 == 1, "");

  // i32

  static constexpr auto v3 = 1i32;
  // CHECK-MESSAGES: :[[@LINE-1]]:30: warning: integer literal has suffix 'i32', which is not uppercase
  // CHECK-MESSAGES-NEXT: static constexpr auto v3 = 1i32;
  // CHECK-MESSAGES-NEXT: ^~
  // CHECK-MESSAGES-NEXT: I32{{$}}
  // CHECK-FIXES: static constexpr auto v3 = 1I32;
  static_assert(is_same<decltype(v3), const int>::value, "");
  static_assert(v3 == 1I32, "");

  static constexpr auto v4 = 1I32; // OK.
  static_assert(is_same<decltype(v4), const int>::value, "");
  static_assert(v4 == 1I32, "");

  // i64

  static constexpr auto v5 = 1i64;
  // CHECK-MESSAGES: :[[@LINE-1]]:30: warning: integer literal has suffix 'i64', which is not uppercase
  // CHECK-MESSAGES-NEXT: static constexpr auto v5 = 1i64;
  // CHECK-MESSAGES-NEXT: ^~
  // CHECK-MESSAGES-NEXT: I64{{$}}
  // CHECK-FIXES: static constexpr auto v5 = 1I64;
  static_assert(is_same<decltype(v5), const long int>::value, "");
  static_assert(v5 == 1I64, "");

  static constexpr auto v6 = 1I64; // OK.
  static_assert(is_same<decltype(v6), const long int>::value, "");
  static_assert(v6 == 1I64, "");

  // i16

  static constexpr auto v7 = 1i16;
  // CHECK-MESSAGES: :[[@LINE-1]]:30: warning: integer literal has suffix 'i16', which is not uppercase
  // CHECK-MESSAGES-NEXT: static constexpr auto v7 = 1i16;
  // CHECK-MESSAGES-NEXT: ^~
  // CHECK-MESSAGES-NEXT: I16{{$}}
  // CHECK-FIXES: static constexpr auto v7 = 1I16;
  static_assert(is_same<decltype(v7), const short>::value, "");
  static_assert(v7 == 1I16, "");

  static constexpr auto v8 = 1I16; // OK.
  static_assert(is_same<decltype(v8), const short>::value, "");
  static_assert(v8 == 1I16, "");

  // i8

  static constexpr auto v9 = 1i8;
  // CHECK-MESSAGES: :[[@LINE-1]]:30: warning: integer literal has suffix 'i8', which is not uppercase
  // CHECK-MESSAGES-NEXT: static constexpr auto v9 = 1i8;
  // CHECK-MESSAGES-NEXT: ^~
  // CHECK-MESSAGES-NEXT: I8{{$}}
  // CHECK-FIXES: static constexpr auto v9 = 1I8;
  static_assert(is_same<decltype(v9), const char>::value, "");
  static_assert(v9 == 1I8, "");

  static constexpr auto v10 = 1I8; // OK.
  static_assert(is_same<decltype(v10), const char>::value, "");
  static_assert(v10 == 1I8, "");
}