Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Preprocessor/print-assembler.s @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_cc1 -E -x assembler-with-cpp %s -o - | FileCheck %s --strict-whitespace |
2 | |
3 .intel_syntax noprefix | |
4 .text | |
5 .global _main | |
6 _main: | |
7 # asdf | |
8 # asdf | |
9 mov bogus_name, 20 | |
10 mov rax, 5 | |
11 ret | |
12 | |
13 // CHECK-LABEL: _main: | |
14 // CHECK-NEXT: {{^}} # asdf | |
15 // CHECK-NEXT: {{^}} # asdf | |
16 // CHECK-NEXT: mov bogus_name, 20 |