blob: 8c3bdfe17b75b42e8ee659382271e8a66e7ebfa3 [file] [log] [blame]
Aleksei Sidorin9e447e92016-09-28 11:04:42 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown -fcxx-exceptions -emit-pch -o %t.1.ast %S/Inputs/asm-function.cpp
2// RUN: %clang_cc1 -triple i386-unknown-unknown -fcxx-exceptions -ast-merge %t.1.ast -fsyntax-only -verify %s
3// expected-no-diagnostics
4
5void testAsmImport() {
6 asmFunc(12, 42);
Gabor Horvath27f5ff62017-03-13 15:32:24 +00007 asmFunc2(42);
Aleksei Sidorin9e447e92016-09-28 11:04:42 +00008}