blob: b686116989343c3059c4388a49f089a71ccd9aa4 (
plain)
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
|
// RUN: clang-cc -triple x86_64-apple-darwin -S -D_FORTIFY_SOURCE=2 %s -o %t.s &&
// RUN: FileCheck --input-file=%t.s %s
#include <string.h>
char gbuf[63];
char *gp;
void test1() {
// CHECK: movabsq $59, %rdx
// CHECK-NEXT: movq %rax, %rdi
// CHECK-NEXT: movq %rcx, %rsi
// CHECK-NEXT: call ___strcpy_chk
strcpy(&gbuf[4], "Hi there");
}
void test2() {
// CHECK: movabsq $63, %rdx
// CHECK-NEXT: movq %rax, %rdi
// CHECK-NEXT: movq %rcx, %rsi
// CHECK-NEXT: call ___strcpy_chk
strcpy(gbuf, "Hi there");
}
void test4() {
// CHECK: call ___inline_strcpy_chk
strcpy(gp, "Hi");
}
void test3() {
int i;
// CHECK: call ___inline_strcpy_chk
strcpy((++i, gbuf), "Hi");
}
|