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.
15 lines
229 B
15 lines
229 B
4 months ago
|
// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o - | llvm-readobj -s | FileCheck %s
|
||
|
|
||
|
.def _main;
|
||
|
.scl 2;
|
||
|
.type 32;
|
||
|
.endef
|
||
|
.text
|
||
|
.globl _main
|
||
|
_main:
|
||
|
.cfi_startproc
|
||
|
ret
|
||
|
.cfi_endproc
|
||
|
|
||
|
// CHECK: Name: .eh_frame
|