From 7aca152472cd2b0dba689e419764ac0dc781011e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 16 Jul 2009 06:14:39 +0000 Subject: implement .include in the lexer/parser instead of passing it into the streamer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75896 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/AsmParser/directive_include.s | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'test/MC') diff --git a/test/MC/AsmParser/directive_include.s b/test/MC/AsmParser/directive_include.s index 8c35d2a..2721fee 100644 --- a/test/MC/AsmParser/directive_include.s +++ b/test/MC/AsmParser/directive_include.s @@ -1,8 +1,9 @@ -# RUN: llvm-mc %s | FileCheck %s +# RUN: llvm-mc %s -I %p | FileCheck %s +# CHECK: TESTA: # CHECK: TEST0: -# CHECK: .include "some/include/file" -# CHECK: .include "mary had a little lamb" -TEST0: - .include "some/include/file" - .include "mary had a little lamb" +# CHECK: .set a, 0 +# CHECK: TESTB: +TESTA: + .include "directive_set.s" +TESTB: -- cgit v1.1