diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-03 14:50:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-03 14:50:12 +0000 |
commit | da257162968820a7fd77a9df44e3f72090a7f13a (patch) | |
tree | 1bc033fab0bd3131f2f7fc1fb61707945adcfa22 /test/inlinetest.ll | |
parent | f4ba6c710c298fe9b492b9cde82ce5efd46afd5d (diff) | |
download | external_llvm-da257162968820a7fd77a9df44e3f72090a7f13a.zip external_llvm-da257162968820a7fd77a9df44e3f72090a7f13a.tar.gz external_llvm-da257162968820a7fd77a9df44e3f72090a7f13a.tar.bz2 |
Adjust test cases to match the fact that methods are now explicit pointer values, not explicit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/inlinetest.ll')
-rw-r--r-- | test/inlinetest.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/inlinetest.ll b/test/inlinetest.ll index f3b68d8..7f1b1c3 100644 --- a/test/inlinetest.ll +++ b/test/inlinetest.ll @@ -12,7 +12,7 @@ int "FuncToInlineInto"(int %arg) ; Instrs can be const prop'd away begin %x = add int %arg, 1 %y = sub int 1, -1 - %p = call int() %FuncToInline() + %p = call int %FuncToInline() %z = add int %x, %y %q = add int %p, %z @@ -21,7 +21,7 @@ end int "main"() begin - %z = call int(int) %FuncToInlineInto(int 1) + %z = call int %FuncToInlineInto(int 1) ret int %z end |