diff options
Diffstat (limited to 'llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll')
-rw-r--r-- | llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll b/llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll deleted file mode 100644 index 4c768d63cb6..00000000000 --- a/llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll +++ /dev/null @@ -1,10 +0,0 @@ -; This test ensures that we get a bitcast constant expression in and out, -; not a sitofp constant expression. -; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | \ -; RUN: grep {bitcast (} - -%G = external global int - -float %tryit(int %A) { - ret float bitcast( int ptrtoint (int* %G to int) to float) -} |