Modernize example, so that you can paste it right into llvm-as

llvm-svn: 14583
This commit is contained in:
Brian Gaeke 2004-07-02 21:08:14 +00:00
parent bee3155b20
commit 317ef96a3a
1 changed files with 5 additions and 2 deletions

View File

@ -1511,8 +1511,11 @@ compiled to LLVM:</p>
%RT = type { sbyte, [10 x [20 x int]], sbyte }
%ST = type { int, double, %RT }
int* "foo"(%ST* %s) {
%reg = getelementptr %ST* %s, int 1, uint 2, uint 1, int 5, int 13<br>
implementation
int* %foo(%ST* %s) {
entry:
%reg = getelementptr %ST* %s, int 1, uint 2, uint 1, int 5, int 13
ret int* %reg
}
</pre>