blob: 200f1ef68468e2ef96ff77a02b65f6273e46d051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: env PATH=%s-helper %clang -no-integrated-as -target x86_64--linux %s -o - > %t.log
// RUN: env PATH=%s-helper %clang -no-integrated-as -m32 -target x86_64--linux %s -o - >> %t.log
// RUN: FileCheck -input-file %t.log %s
// CHECK: x86_64--linux-as called
// CHECK: x86_64--linux-ld called
// CHECK: x86_64--linux-as called
// CHECK: x86_64--linux-ld called
int
main(void)
{
return 0;
}
|