mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
9 lines
429 B
C
9 lines
429 B
C
// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float %s 2> %t.log
|
|
// RUN: grep '"-no-implicit-float"' %t.log
|
|
|
|
// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -S -msoft-float -mno-soft-float %s 2> %t.log
|
|
// RUN: grep '"-no-implicit-float"' %t.log | count 0
|
|
|
|
// RUN: %clang -ccc-host-triple i386-apple-darwin9 -### -S -mno-soft-float %s -msoft-float 2> %t.log
|
|
// RUN: grep '"-no-implicit-float"' %t.log
|
|
|