You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
304 B
17 lines
304 B
4 months ago
|
// RUN: %clang_cc1 -E -x assembler-with-cpp %s -o - | FileCheck %s --strict-whitespace
|
||
|
|
||
|
.intel_syntax noprefix
|
||
|
.text
|
||
|
.global _main
|
||
|
_main:
|
||
|
# asdf
|
||
|
# asdf
|
||
|
mov bogus_name, 20
|
||
|
mov rax, 5
|
||
|
ret
|
||
|
|
||
|
// CHECK-LABEL: _main:
|
||
|
// CHECK-NEXT: {{^}} # asdf
|
||
|
// CHECK-NEXT: {{^}} # asdf
|
||
|
// CHECK-NEXT: mov bogus_name, 20
|