blob: c9e107f593aec5f92b9d3e8318e9cea34212b37a [file] [log] [blame]
Akira Hatanaka54edd472012-03-26 17:37:20 +00001// Check handling -mhard-float / -msoft-float / -mfloat-abi options
2// when build for MIPS platforms.
3//
4// Default
Daniel Dunbarae7e9392012-04-09 20:40:11 +00005// RUN: %clang -ccc-clang-archs mips -c %s -### -o %t.o 2>&1 \
Akira Hatanaka54edd472012-03-26 17:37:20 +00006// RUN: -target mips-linux-gnu \
7// RUN: | FileCheck --check-prefix=CHECK-DEF %s
8// CHECK-DEF: "-mfloat-abi" "hard"
9//
10// -mhard-float
Daniel Dunbarae7e9392012-04-09 20:40:11 +000011// RUN: %clang -ccc-clang-archs mips -c %s -### -o %t.o 2>&1 \
Akira Hatanaka54edd472012-03-26 17:37:20 +000012// RUN: -target mips-linux-gnu -mhard-float \
13// RUN: | FileCheck --check-prefix=CHECK-HARD %s
14// CHECK-HARD: "-mfloat-abi" "hard"
15//
16// -msoft-float
Daniel Dunbarae7e9392012-04-09 20:40:11 +000017// RUN: %clang -ccc-clang-archs mips -c %s -### -o %t.o 2>&1 \
Akira Hatanaka54edd472012-03-26 17:37:20 +000018// RUN: -target mips-linux-gnu -msoft-float \
19// RUN: | FileCheck --check-prefix=CHECK-SOFT %s
20// CHECK-SOFT: "-msoft-float"
21// CHECK-SOFT: "-mfloat-abi" "soft"
22// CHECK-SOFT: "-target-feature" "+soft-float"
23//
24// -mfloat-abi=hard
Daniel Dunbarae7e9392012-04-09 20:40:11 +000025// RUN: %clang -ccc-clang-archs mips -c %s -### -o %t.o 2>&1 \
Akira Hatanaka54edd472012-03-26 17:37:20 +000026// RUN: -target mips-linux-gnu -mfloat-abi=hard \
27// RUN: | FileCheck --check-prefix=CHECK-ABI-HARD %s
28// CHECK-ABI-HARD: "-mfloat-abi" "hard"
29//
30// -mfloat-abi=soft
Daniel Dunbarae7e9392012-04-09 20:40:11 +000031// RUN: %clang -ccc-clang-archs mips -c %s -### -o %t.o 2>&1 \
Akira Hatanaka54edd472012-03-26 17:37:20 +000032// RUN: -target mips-linux-gnu -mfloat-abi=soft \
33// RUN: | FileCheck --check-prefix=CHECK-ABI-SOFT %s
34// CHECK-ABI-SOFT: "-msoft-float"
35// CHECK-ABI-SOFT: "-mfloat-abi" "soft"
36// CHECK-ABI-SOFT: "-target-feature" "+soft-float"
37//
38// -mfloat-abi=single
Daniel Dunbarae7e9392012-04-09 20:40:11 +000039// RUN: %clang -ccc-clang-archs mips -c %s -### -o %t.o 2>&1 \
Akira Hatanaka54edd472012-03-26 17:37:20 +000040// RUN: -target mips-linux-gnu -mfloat-abi=single \
41// RUN: | FileCheck --check-prefix=CHECK-ABI-SINGLE %s
42// CHECK-ABI-SINGLE: "-target-feature" "+single-float"