summaryrefslogtreecommitdiffstats
path: root/test/inlinetest.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-03 14:50:12 +0000
committerChris Lattner <sabre@nondot.org>2001-10-03 14:50:12 +0000
commitda257162968820a7fd77a9df44e3f72090a7f13a (patch)
tree1bc033fab0bd3131f2f7fc1fb61707945adcfa22 /test/inlinetest.ll
parentf4ba6c710c298fe9b492b9cde82ce5efd46afd5d (diff)
downloadexternal_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.ll4
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