mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
8 lines
506 B
C
8 lines
506 B
C
// RUN: %clang -ccc-host-triple x86_64-unknown-unknown -c -x assembler %s -### 2> %t.log
|
|
// RUN: grep '.*gcc.*"-m64"' %t.log
|
|
// RUN: %clang -ccc-host-triple x86_64-unknown-unknown -c -x assembler %s -### -m32 2> %t.log
|
|
// RUN: grep '.*gcc.*"-m32"' %t.log
|
|
// RUN: %clang -ccc-host-triple i386-unknown-unknown -c -x assembler %s -### 2> %t.log
|
|
// RUN: grep '.*gcc.*"-m32"' %t.log
|
|
// RUN: %clang -ccc-host-triple i386-unknown-unknown -c -x assembler %s -### -m64 2> %t.log
|
|
// RUN: grep '.*gcc.*"-m64"' %t.log
|