mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 23:51:56 +00:00
Fix copypaste error in test.
Thename says it's an i32*, but it was actually creating another i8* llvm-svn: 185239
This commit is contained in:
parent
b74e3dec30
commit
50a16a4275
@ -141,7 +141,7 @@ TEST(InstructionsTest, VectorGep) {
|
||||
|
||||
// Type Definitions
|
||||
PointerType *Ptri8Ty = PointerType::get(IntegerType::get(C, 8), 0);
|
||||
PointerType *Ptri32Ty = PointerType::get(IntegerType::get(C, 8), 0);
|
||||
PointerType *Ptri32Ty = PointerType::get(IntegerType::get(C, 32), 0);
|
||||
|
||||
VectorType *V2xi8PTy = VectorType::get(Ptri8Ty, 2);
|
||||
VectorType *V2xi32PTy = VectorType::get(Ptri32Ty, 2);
|
||||
|
Loading…
Reference in New Issue
Block a user