diff --git a/test/Regression/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx b/test/Regression/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx new file mode 100644 index 00000000000..67d0dbc266d --- /dev/null +++ b/test/Regression/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx @@ -0,0 +1,17 @@ +; RUN: llvm-as < %s | opt -globalopt + +%V = global float 12.0 +%G = internal global int* null + +int %user() { + %P = load int** %G + %Q = load int* %P + ret int %Q +} + +void %setter() { + %Vi = cast float* %V to int* + store int* %Vi, int** %G + ret void +} +