[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Assembler Language Reference

.line Pseudo-op

Purpose

Identifies a line number and provides additional information specific to the line number.

Syntax

.line Number

Description

The .line pseudo-op identifies a line number and is used with the .bi pseudo-op to provide a symbol table and other information necessary for use of the symbolic debugger.

This pseudo-op is customarily inserted by a compiler and has no other effect on assembly.

Parameters

Number Represents a line number of the original source file.

Examples

The following example illustrates the use of the .line pseudo-op:

.globl .hello[pr]
.csect .hello[pr]
.align 1
.function   .hello[pr],L.1B,16,044

.stabx "hello:f-1",0,142,0
.bf 2
.line 1
.line 2

Related Information

Pseudo-ops Overview.

The .bi pseudo-op, .bf pseudo-op, .function pseudo-op.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]