[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git] / llvm / test / Bitcode / vst-forward-declaration.ll
blob599caa0150edd4b3d34028e3cb561f1bbdf2a053
1 ; RUN: llvm-as < %s | llvm-bcanalyzer -dump | FileCheck %s -check-prefix=BC
2 ; Check for VST forward declaration record and VST function index records.
4 ; BC: <VSTOFFSET
5 ; BC: <FNENTRY
6 ; BC: <FNENTRY
8 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
9 ; Check that this round-trips correctly.
11 ; ModuleID = '<stdin>'
12 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
13 target triple = "x86_64-unknown-linux-gnu"
15 ; CHECK: define i32 @foo()
17 ; Function Attrs: nounwind uwtable
18 define i32 @foo() #0 {
19 entry:
20   ret i32 1
23 ; CHECK: define i32 @bar(i32 %x)
25 ; Function Attrs: nounwind uwtable
26 define i32 @bar(i32 %x) #0 {
27 entry:
28   ret i32 %x