diff options
| author | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
| commit | fb4193625a02f97f77dbf52827c8ad6e399cbb22 (patch) | |
| tree | 06559b0b012e1ac594e50db5abd987474bf24b1f /llvm/test/Transforms/IPConstantProp | |
| parent | c3c031bb37d244ef3c95b08f81d66957da43ac4e (diff) | |
| download | bcm5719-llvm-fb4193625a02f97f77dbf52827c8ad6e399cbb22.tar.gz bcm5719-llvm-fb4193625a02f97f77dbf52827c8ad6e399cbb22.zip | |
Delete useless trailing semicolons.
llvm-svn: 92740
Diffstat (limited to 'llvm/test/Transforms/IPConstantProp')
| -rw-r--r-- | llvm/test/Transforms/IPConstantProp/return-argument.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/IPConstantProp/return-argument.ll b/llvm/test/Transforms/IPConstantProp/return-argument.ll index 0223453fa17..6d6eb24cf54 100644 --- a/llvm/test/Transforms/IPConstantProp/return-argument.ll +++ b/llvm/test/Transforms/IPConstantProp/return-argument.ll @@ -34,9 +34,9 @@ define void @caller(i1 %C) { ;; Call @foo twice, to prevent the arguments from propagating into the ;; function (so we can check the returned argument is properly ;; propagated per-caller). - %S1 = call { i32, i32 } @foo(i32 1, i32 2); + %S1 = call { i32, i32 } @foo(i32 1, i32 2) %X1 = extractvalue { i32, i32 } %S1, 0 - %S2 = invoke { i32, i32 } @foo(i32 3, i32 4) to label %OK unwind label %RET; + %S2 = invoke { i32, i32 } @foo(i32 3, i32 4) to label %OK unwind label %RET OK: %X2 = extractvalue { i32, i32 } %S2, 0 ;; Do some stuff with the returned values which we can grep for |

