summaryrefslogtreecommitdiff
path: root/nasm.c
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2010-04-21 00:51:22 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2010-04-21 01:08:36 +0400
commit2a587ab1c98134ceb81c2b7a1e723728d6a62407 (patch)
tree39f8b81e8304ab598bed4d25246e594a0be36ae3 /nasm.c
parentd5f2aef30abcba734c51abdadf3255a6f4bd5be9 (diff)
downloadnasm-2a587ab1c98134ceb81c2b7a1e723728d6a62407.tar.gz
ofmt: Implement null_segalign stubs
Set stubs for all targets Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.c')
-rw-r--r--nasm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nasm.c b/nasm.c
index afd9ea43..96d91056 100644
--- a/nasm.c
+++ b/nasm.c
@@ -1241,6 +1241,8 @@ static void assemble_file(char *fname, StrList **depend_ptr)
"segment alignment `%s' is not power of two",
value);
}
+ /* callee should be able to handle all details */
+ ofmt->segalign(location.segment, align);
}
}
break;