aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-02-18 19:16:45 +0000
committerChris Lattner <sabre@nondot.org>2003-02-18 19:16:45 +0000
commit07928ef7f58bb66f957bcadbfc9280c86cc57b10 (patch)
tree4982fbba4b45a6c26203905460cf0c094b0b1191
parentf63355327a514afc4f7e2f0986293ef417620bb7 (diff)
modernize testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5586 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/InstCombine/div.ll6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Transforms/InstCombine/div.ll b/test/Transforms/InstCombine/div.ll
index 4f81b2f3f7..10daccf11c 100644
--- a/test/Transforms/InstCombine/div.ll
+++ b/test/Transforms/InstCombine/div.ll
@@ -8,9 +8,7 @@
implementation
-int "test1"(int %A)
-begin
+int %test1(int %A) {
%B = div int %A, 1
ret int %B
-end
-
+}