diff options
-rw-r--r-- | test/Linker/testlink2.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Linker/testlink2.ll b/test/Linker/testlink2.ll index 445749a347..df8d85b381 100644 --- a/test/Linker/testlink2.ll +++ b/test/Linker/testlink2.ll @@ -4,12 +4,19 @@ %AConst = constant int 123 +constant int 412 + implementation int "foo"(int %blah) begin store int %blah, int *%MyVar store int 12, { \2 *, int } * %MyIntList, ubyte 1 + + ;%ack = load int * %0 ;; Load from the unnamed constant + ;%fzo = add int %ack, %blah + ;ret int %fzo ret int %blah end +declare void "unimp"(float, double) |