Aleksei Sidorin | 9e447e9 | 2016-09-28 11:04:42 +0000 | [diff] [blame] | 1 | // 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 | |||||
5 | void testAsmImport() { | ||||
6 | asmFunc(12, 42); | ||||
Gabor Horvath | 27f5ff6 | 2017-03-13 15:32:24 +0000 | [diff] [blame] | 7 | asmFunc2(42); |
Aleksei Sidorin | 9e447e9 | 2016-09-28 11:04:42 +0000 | [diff] [blame] | 8 | } |