diff options
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/X86/coff-feat00.ll | 7 | ||||
| -rw-r--r-- | llvm/test/MC/COFF/feat00.s | 13 |
2 files changed, 20 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/coff-feat00.ll b/llvm/test/CodeGen/X86/coff-feat00.ll new file mode 100644 index 00000000000..1dcd4276399 --- /dev/null +++ b/llvm/test/CodeGen/X86/coff-feat00.ll @@ -0,0 +1,7 @@ +; RUN: llc -O0 -mtriple=i386-pc-win32 -filetype=asm -o - %s | FileCheck %s + +define i32 @foo() { + ret i32 0 +} + +; CHECK: @feat.00 = 1 diff --git a/llvm/test/MC/COFF/feat00.s b/llvm/test/MC/COFF/feat00.s new file mode 100644 index 00000000000..b8862de1983 --- /dev/null +++ b/llvm/test/MC/COFF/feat00.s @@ -0,0 +1,13 @@ +// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o - | llvm-readobj -t | FileCheck %s + +"@feat.00" = 123 + +// CHECK: Symbol { +// CHECK: Name: @feat.00 +// CHECK: Value: 123 +// CHECK: Section: (-1) +// CHECK: BaseType: Null (0x0) +// CHECK: ComplexType: Null (0x0) +// CHECK: StorageClass: External (0x2) +// CHECK: AuxSymbolCount: 0 +// CHECK: } |

