[RISCV][FMV] Support target_clones (#85786)
[llvm-project.git] / clang / test / FixIt / fixit-format-ios.m
blob3db75dfc19e3539a1f4bd0d6e03fb8c61612a33a
1 // RUN: cp %s %t
2 // RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -Wformat-pedantic -fixit %t
3 // RUN: grep -v CHECK %t | FileCheck %s
5 int printf(const char * restrict, ...);
6 typedef unsigned int NSUInteger;
7 typedef int NSInteger;
8 NSUInteger getNSUInteger(void);
9 NSInteger getNSInteger(void);
11 void test(void) {
12   // For thumbv7-apple-ios8.0.0 the underlying type of ssize_t is long
13   // and the underlying type of size_t is unsigned long.
15   printf("test 1: %zu", getNSUInteger()); 
16   // CHECK: printf("test 1: %lu", (unsigned long)getNSUInteger());
18   printf("test 2: %zu %zu", getNSUInteger(), getNSUInteger());
19   // CHECK: printf("test 2: %lu %lu", (unsigned long)getNSUInteger(), (unsigned long)getNSUInteger());
21   printf("test 3: %zd", getNSInteger()); 
22   // CHECK: printf("test 3: %ld", (long)getNSInteger());
24   printf("test 4: %zd %zd", getNSInteger(), getNSInteger());
25   // CHECK: printf("test 4: %ld %ld", (long)getNSInteger(), (long)getNSInteger());