[ Previous | Next | Contents | Home | Search ]
AIX Version 4.3 Assembler Language Reference

.file Pseudo-op

Purpose

Identifies a source file name.

Syntax

.file StringConstant

Description

The .file pseudo-op provides symbol table information necessary for the use of the symbolic debugger and linkage editor. The .file pseudo-op also provides the intended target environment and source language type for the use of the link editor.

For cascade compilers, the .file pseudo-op has no other effect on assembly and is customarily inserted by the compiler.

It is recommended that the .file pseudo-op be placed at the beginning of the source code for assembly language programs. If the .file pseudo-op is omitted from the source code, the assembler processes the program as if the .file pseudo-op were the first statement. The assembler does this by creating an entry in the symbol table with the source program name as the file name. If the source is standard input, the file name will be noname. The assembler listing will not have this inserted entry.

Parameters

StringConstant Specifies the file name of the original source file.

Examples

  1. To use a source file named main.c, enter:
    .file "main.c"
  2. To use a source file named asml.s, enter:
    .file "asml.s"

Related Information

Pseudo-ops Overview.

The .function pseudo-op.


[ Previous | Next | Contents | Home | Search ]