brintos

brintos / llvm-project-archived public Read only

0
0
Text · 312 B · 8c3bdfe Raw
9 lines · cpp
1// RUN: %clang_cc1 -triple i386-unknown-unknown -fcxx-exceptions -emit-pch -o %t.1.ast %S/Inputs/asm-function.cpp2// RUN: %clang_cc1 -triple i386-unknown-unknown -fcxx-exceptions -ast-merge %t.1.ast -fsyntax-only -verify %s3// expected-no-diagnostics4 5void testAsmImport() {6  asmFunc(12, 42);7  asmFunc2(42);8}9